body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333; /* Default text color, still kept dark for readability*/
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
    border-radius: 2%;
}

header {
    background-color: #0056b3; /* Deep blue for header */
    padding: 10px 0;
    border-bottom: 2px solid #ddd;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    color: white; /* White for logo/heading in header */
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav a {
    text-decoration: none;
    color: white; /* White for navigation links */
    font-weight: bold;
}

nav a:hover {
    color: #f0f0f0; /* Slightly lighter white on hover */
}

/* General Styles */
.about-us {
    padding: 40px 0;
    background-color: #f9f9f9; /* Light gray background for contrast */
  }
  
  .container2 {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .about-us h2 {
    text-align: center;
    margin-bottom: 30px;
      color: #333;
  }
  /* Content Layout */
  .about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
      margin-bottom: 30px;
  }
  
  .about-text {
    flex: 1;
    padding: 20px;
  }
  .about-text p{
      margin-bottom: 15px;
  }
  .about-image {
    flex: 1;
    padding: 20px;
      text-align: center;
  }
  
  .about-image img {
      max-width: 100%;
      height: auto;
      max-height: 490px;
      border-radius: 5px;
      display: block;
      margin: 0 auto; 
  }

  .call-to-action {
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  .call-to-action button {
          background-color: #007bff;
          color: white;
          padding: 12px 20px;
          border: none;
          border-radius: 4px;
          cursor: pointer;
          transition: background-color 0.3s;
          margin: 0 10px;
  }
  .call-to-action button:hover {
      background-color: #0056b3;
  }
  
  
  /* Responsive design */
  @media (max-width: 768px) {
    .about-content {
      flex-direction: column;
      text-align: center;
    }
    .about-image img {
        margin-bottom: 20px;
    }
      .call-to-action {
          flex-direction: column;
      }
      .call-to-action button {
          margin: 10px 0;
      }
  }

#hero {
    background-color: #f0f0f0; /* Light gray */
    text-align: center;
    padding: 50px 0;
}

.hero-content h2 {
    font-size: 2.5rem;
     color: #0056b3;/* Header in blue */
}

.hero-content p{
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.cta-button {
    display: inline-block;
    background-color: #dc3545; /* Red button */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #a72735; /* Darker red on hover */
}


#products {
  padding: 30px 0;
  background-color: #f9f9f9; /* Light gray background for product section */
}

#products h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #0056b3; /* Headings in blue */
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    background-color: white;
}
.product img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}
.price{
    font-size: 1.2em;
    font-weight: bold;
     color: #0056b3;/* Price in blue */
}
.add-to-cart {
    background-color: #007bff; /* Slightly lighter blue for button */
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: bold;
}

.add-to-cart:hover {
    background-color: #0056b3; /* Darker blue for button hover */
}

.contact-us {
    padding: 20px;
    margin: 20px 0;
    border-bottom: 1px solid #eee;
}
.contact-us h2{
    text-align: center;
    margin-bottom: 30px;
}
.contact-us .contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.contact-form, .contact-info {
    flex: 1;
    padding: 20px;
    max-width: 500px;
}

.contact-form h3, .contact-info h3{
  margin-bottom: 20px;
}
/* Form Specific Styles */
.contact-form label {
    display: block;
    margin-bottom: 5px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.contact-form textarea{
  height: 150px;
}
.contact-form button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.contact-form button:hover {
    background-color: #0056b3;
}
/* Other contact methods */
.contact-info p, .contact-info a {
    margin-bottom: 10px;
}
.contact-info a {
    text-decoration: none;
    color: #007bff;
}
.contact-info a:hover {
    text-decoration: underline;
}
/* Map Styling */
.contact-info iframe {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Responsive Design (Optional) */
@media (max-width: 768px) {
    .contact-form, .contact-info {
         flex: 1 0 100%;
        margin: 10px;
    }
}


section {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    background-color: #f9f9f9; /* Light gray for sections */
}

section h2 {
    text-align: center;
    margin-bottom: 20px;
     color: #0056b3; /* Section header in blue */
}

footer {
    background-color: #0056b3; /* Footer in Blue */
    color: white;
    text-align: center;
    padding: 10px 0;
}