/* RESET / GLOBAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #fff;
  }
  
  /* NAVIGATION */
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background-color: white;
  }
  
  .logo {
    color: darkslateblue;
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links li a {
    color: darkslateblue;
    text-decoration: none;
    font-weight: 500;
  }
  
  .cta-button {
    background-color: #4caf50;
    color: #fff;
    padding: 0.6rem 1rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
  }
  
  /* HERO SECTION */
  header {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('hero.png') no-repeat center center / cover;
    /* If you have a specific hero image, place it above. 
       Otherwise, just keep a background color or gradient. */
  }
  
  .hero {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 500px;
    color: #fff;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-button {
    background-color: #008CBA;
    color: #fff;
    padding: 0.8rem 1.2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
  }
  
  /* INTRO SECTION */
  .intro {
    padding: 2rem 1rem;
    text-align: center;
    background-color: #fff;
  }
  
  .intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .intro p {
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
  }
  
  .intro-image img {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
  }
  
  .stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
  }
  
  .stat h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  /* PROCESS SECTION */
  .process {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
  }
  
  .process h2 {
    font-size: 2rem;
  }
  
  .steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .step {
    max-width: 200px;
  }
  
  .step h3 {
    margin-bottom: 0.5rem;
  }
  
  /* MID-PAGE CTA */
  .cta {
    background-color: #f2f2f2;
    text-align: center;
    padding: 2rem 1rem;
  }
  
  .cta h2 {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  
  /* TESTIMONIALS */
  .testimonials {
    background-color: #2196f3;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .testimonials h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .testimonial-card {
    background-color: #fff;
    color: #333;
    padding: 1rem;
    max-width: 250px;
    border-radius: 4px;
  }
  
  .testimonial-card h3 {
    margin-bottom: 0.5rem;
  }
  
  /* GALLERY */
  .gallery {
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .gallery h2 {
    font-size: 2rem;
  }
  
  .gallery-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    max-width: 800px;
    margin: 2rem auto 0;
  }
  
  .gallery-images img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
  }
  
  /* FOOTER */
  footer {
    background-color: #f2f2f2;
    padding: 2rem 1rem;
  }
  
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 2rem;
  }
  
  .footer-col h3 {
    margin-bottom: 1rem;
  }
  
  .footer-col ul {
    list-style: none;
  }
  
  .footer-col ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer-col ul li a {
    color: #333;
    text-decoration: none;
  }
  
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-bottom p {
    margin-bottom: 1rem;
  }
  
  .social-icons a {
    margin-left: 1rem;
    color: #333;
    text-decoration: none;
    font-weight: bold;
  }
  