  /* Reset and Base Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* Container */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  /* Header */
  .header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
  }

  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
  }

  .logo-icon {
    width: 78px;
    height: 78px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
  }



  .logo-img {
    width: 32px;
    height: 32px;
    fill: white;
  }

  .logo-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: bold;
  }

  .logo-green {
    color: #333;
  }

  .logo-grounds {
    color: #2d5016;
  }

  .logo-subtitle {
    font-size: 10px;
    color: #666;
    letter-spacing: 0.1em;
  }

  .logo-tagline {
    font-size: 8px;
    color: #999;
    letter-spacing: 0.1em;
  }

  .license{
    color: #3d6b1f  ;
    font-size: 10px;
  }

  .nav {
    display: flex;
    gap: 0.25rem;
  }

  .nav p{
    color: #1f3810;
  }
  .nav-link {
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    color: #4a5568;
    transition: background-color 0.2s;
  }

  .nav-link:hover {
    background: #f7fafc;
  }

  .nav-link.active {
    background: #2d5016;
    color: white;
  }

  /* Mobile Menu Toggle Button Styles */
  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }

  .mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Hero Section */
  .hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
  }

  .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
  }

  .hero-buttons {
    margin-left: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .btn {
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    min-width: 200px;
    transition: background-color 0.2s;
  }

  .btn-primary {
    background: #2d5016;
    color: white;
  }

  .btn-primary:hover {
    background: #1f3810;
  }

  .btn-secondary {
    background: #3d6b1f;
    color: white;
  }

  .btn-secondary:hover {
    background: #2d5016;
  }

  /* Projects Section */
  .projects-section {
    padding: 4rem 1rem;
  }

  .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: #2d5016;
  }

  .section-title.green {
    color: #2d5016;
  }

  .projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 500px;
    max-width: 900px;
    margin: 0 auto;
  }

  .project-card {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
  }

  .project-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
  }

  .project-card img {
    width: 500px;
    height: 230px;
    object-fit: cover;
    transition: transform 0.3s;
  }

  .project-card:hover img {
    transform: scale(1.05);
  }

  /* About Section */
  .about-section {
    padding: 4rem 1rem;
  }

  .about-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #333;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
  }

  .about-text {
    color: #4a5568;
    line-height: 1.8;
  }

  .about-text p {
    margin-bottom: 1rem;
  }

  .about-image {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Team Section */
  .team-section {
    padding: 4rem 1rem;
    background: #f7fafc;
  }

  .team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-member {
    text-align: center;
  }

  .team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
  }

  .team-name {
    font-weight: bold;
    color: #333;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
  }

  .team-title {
    font-size: 0.875rem;
    color: #666;
  }

  /* Clients Section */
  .clients-section {
    padding: 4rem 1rem;
  }

  .clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
    opacity: 0.6;
  }

  .client-logo {
    width: 128px;
    height: 80px;
    position: relative;
  }

  .client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
  }

  /* Service Split Sections */
  .service-split {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 600px;
  }

  .service-split.reverse .service-content {
    order: 2;
  }

  .service-split.reverse .service-image {
    order: 1;
  }

  .service-image {
    position: relative;
    height: 400px;
  }

  .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .service-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }

  .service-content.beige {
    background: #f5f5f0;
  }

  .service-content.white {
    background: white;
  }

  .service-text {
    max-width: 600px;
  }

  .service-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2d5016;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
  }

  .service-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  .service-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 1rem;
  }

  .service-list {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.8;
  }

  /* Gallery Section */
  .gallery-section {
    padding: 1rem 1rem;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
  }

  .gallery-item img {
    width: 100%;
    height: 96%;
    object-fit: cover;
    transition: transform 0.3s;
  }

  .gallery-item:hover img {
    transform: scale(1.05);
  }

  /* Contact Hero */
  .contact-hero {
    background: #5a7c5a;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
  }

  .contact-hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }

  .contact-hero-title .light {
    font-weight: normal;
  }

  .contact-hero-subtitle {
    font-size: 1.125rem;
  }

  /* Contact Section */
  .contact-section {
    padding: 4rem 1rem;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
  }

  .contact-phone {
    background: #5a7c5a;
    color: white;
    padding: 3rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .phone-icon {
    width: 96px;
    height: 96px;
    margin-bottom: 1.5rem;
  }

  .phone-label {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }

  .phone-number {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
  }

  .phone-number:hover {
    text-decoration: underline;
  }

  /* Contact Form */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .form-input,
  .form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
  }

  .form-input:focus,
  .form-textarea:focus {
    outline: none;
    border-color: #5a7c5a;
  }

  .form-label {
    display: block;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.25rem;
  }

  .form-textarea {
    resize: none;
  }

  .form-submit {
    width: 100%;
    padding: 0.75rem;
    background: #5a7c5a;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
  }

  .form-submit:hover {
    background: #4a6c4a;
  }

  /* Footer */
  .footer {
    background: white;
    border-top: 1px solid #e5e5e5;
    padding: 3rem 1rem;
  }

  .footer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }

  .footer-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .footer-text {
    color: #666;
    margin-bottom: 0.5rem;
  }

  .footer-link {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-link:hover {
    color: #2d5016;
  }

  .footer-services {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #999;
  }

  .footer-services p {
    margin-bottom: 0.25rem;
  }

  /* Responsive Design */
  @media (max-width: 767px) {
    .mobile-menu-toggle {
      display: flex;
    }

    .nav {
      position: fixed;
      top: 80px;
      left: 0;
      right: 0;
      background: white;
      flex-direction: column;
      gap: 0;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      z-index: 100;
    }

    .nav.active {
      max-height: 300px;
    }

    .nav-link {
      padding: 1rem 1.5rem;
      border-bottom: 1px solid #e5e5e5;
    }

    .hero-title {
      font-size: 2rem;
    }

    .hero {
      height: 300px;
    }

    .btn {
      min-width: 160px;
      padding: 1rem 1.5rem;
      font-size: 1rem;
    }

    .section-title {
      font-size: 1.75rem;
    }

    .service-title {
      font-size: 1.75rem;
    }

    .contact-hero-title {
      font-size: 1.75rem;
    }

    .phone-number {
      font-size: 1.5rem;
    }

    .logo-title {
      font-size: 1rem;
    }

    .logo-subtitle {
      font-size: 8px;
    }

    .logo-tagline {
      font-size: 7px;
    }
  }

  @media (min-width: 640px) {
    .hero-buttons {
      flex-direction: row;
    }
  }

  @media (min-width: 768px) {
    .projects-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .clients-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .service-split {
      grid-template-columns: repeat(2, 1fr);
    }

    .service-split.reverse .service-content {
      order: 1;
    }

    .service-split.reverse .service-image {
      order: 2;
    }

    .service-image {
      height: auto;
    }

    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .hero-title {
      font-size: 4rem;
    }

    .team-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .service-text {
      padding: 2rem;
    }
  }
