/* styles.css */

/* Global Styles */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
  }
  
  .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
  }
  
  h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin: 0;
  }
  
  p {
    margin: 0 0 20px;
  }
  
  a {
    color: #007bff;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Navigation */
  nav {
    background-color: #333;
    padding: 20px 0;
  }
  
  .logo {
    color: #fff;
    margin: 0;
  }
  
  .nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .nav-links li {
    display: inline-block;
    margin-right: 20px;
  }
  
  .nav-links li:last-child {
    margin-right: 0;
  }
  
  .nav-links a {
    color: #fff;
    font-weight: 700;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #007bff;
  }
  
  /* Hero Section */
  .hero {
    background-image: url('hero-background.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
    padding: 150px 0;
  }
  
  .hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 20px;
    margin-bottom: 40px;
  }
  
  .btn {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #0056b3;
  }
  
  /* About Section */
  #about {
    background-color: #fff;
    padding: 80px 0;
  }
  
  /* Services Section */
  #services {
    background-color: #f8f8f8;
    padding: 80px 0;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .service {
    background-color: #fff;
    padding: 30px;
    text-align: center;
  }
  
  .service i {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  /* Testimonials Section */
  #testimonials {
    background-color: #f8f8f8;
    padding: 80px 0;
  }
  
  .testimonial {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 30px;
  }
  
  .testimonial p {
    font-style: italic;
    margin-bottom: 10px;
  }
  
  .testimonial .author {
    font-weight: 700;
  }
  
  /* Contact Section */
  #contact {
    background-color: #fff;
    padding: 80px 0;
  }
  
  .contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    margin-right:
    20px;
}

.contact-item i {
  font-size: 24px;
  margin-right: 10px;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

footer p {
  margin: 0;
}

