    body { font-family: 'Open Sans', sans-serif; color: #333333; background-color: #F8F8F8; }
    .site-header { background-color: #2D3A4F; }
    .logo-text { font-family: 'Playfair Display', serif; color: #FFFFFF; }
    .navbar-nav .nav-link { color: #FFFFFF; transition: color 0.3s ease; }
    .navbar-nav .nav-link:hover { color: #A8C6CE; }
    .btn-custom-cta { background-color: #E8A87C; color: #2D3A4F; border: none; transition: background-color 0.3s ease; }
    .btn-custom-cta:hover { background-color: #F0B38C; color: #2D3A4F; }
    .tagline { color: #A8C6CE; font-size: 0.9rem; margin-top: 5px; }

    /* Custom styles for main content */
    .hero-section {
      background-color: #1C2A3A; /* Dark background for hero */
      color: #FFFFFF;
      padding: 100px 0; /* Generous spacing */
      position: relative;
      overflow: hidden;
      min-height: 600px; /* Ensure hero has a decent height */
      display: flex; /* For vertical centering of content */
      align-items: center; /* For vertical centering of content */
    }
    .hero-section::before { /* Overlay for text readability */
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, rgba(28, 42, 58, 0.7) 0%, rgba(28, 42, 58, 0.3) 50%, rgba(28, 42, 58, 0.1) 100%);
      z-index: 1;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center; /* Center content horizontally */
      width: 100%;
    }
    .hero-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      color: #2D3A4F;
      margin-bottom: 3rem;
      text-align: center;
      position: relative;
      padding-bottom: 15px;
    }
    .section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: #E8A87C;
    }
    .about-text {
      line-height: 1.8;
      color: #333333;
    }
    .service-card {
      background-color: #FFFFFF;
      border: 1px solid #E8A87C;
      border-radius: 8px;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%; /* Ensure cards are same height in a row */
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }
    .service-card h4 {
      font-family: 'Playfair Display', serif;
      color: #2D3A4F;
      margin-top: 1rem;
      margin-bottom: 1rem;
    }
    .service-card p {
        color: #666;
    }
    .service-icon {
        width: 80px;
        height: 80px;
        object-fit: contain;
        margin: 0 auto 1rem;
        display: block; /* Center align image */
    }
    .cta-block {
      background-color: #2D3A4F;
      color: #FFFFFF;
      padding: 4rem 0;
      text-align: center;
    }
    .cta-block h2 {
      font-family: 'Playfair Display', serif;
      color: #FFFFFF;
      margin-bottom: 2rem;
    }
    .cta-block p {
      color: #A8C6CE;
      font-size: 1.1rem;
      margin-bottom: 3rem;
    }
    /* Responsive adjustments for mobile */
    @media (max-width: 767.98px) {
        .hero-section {
            padding: 60px 0;
            min-height: 400px;
        }
        .hero-section h1 {
            font-size: 2.2rem; /* Smaller font for mobile hero title */
            margin-bottom: 1.5rem !important;
        }
        .hero-section p {
            font-size: 0.95rem;
            margin-bottom: 2.5rem !important;
        }
        .hero-section .btn-lg {
            font-size: 1rem;
            padding: 0.8rem 1.5rem;
            display: block; /* Stack buttons on mobile */
            width: 100%;
            margin-bottom: 1rem; /* Space between stacked buttons */
        }
        .hero-section .btn-lg:last-child {
            margin-bottom: 0;
        }
        .section-title {
            margin-bottom: 2rem;
            font-size: 1.8rem;
        }
        .about-us-img {
            margin-top: 2rem;
        }
        .service-card {
            margin-bottom: 1.5rem;
        }
        .cta-block {
            padding: 3rem 0;
        }
        .cta-block h2 {
            font-size: 1.8rem;
        }
        .cta-block p {
            font-size: 1rem;
        }
        .cta-block .btn-lg {
            width: 80%; /* Make CTA button wider but not full width */
            margin-left: auto;
            margin-right: auto;
            display: block;
        }
    }
    @media (min-width: 768px) {
        .hero-section .btn-lg {
            display: inline-block; /* Inline buttons on larger screens */
            width: auto;
        }
    }