/* Base Styles */
body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    color: #374151;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
}

.body-base {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    color: #374151;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
}

/* Reusable Layout Classes */
.main-content-area {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem;
}
@media (min-width: 1024px) {
    .main-content-area {
        padding: 3rem 2rem;
    }
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #404040;
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-subtitle {
    margin-top: -1rem;
    font-size: 1.25rem;
    color: #4b5563;
    text-align: center;
    margin-bottom: 3rem;
}

/* Header Styles */
.header-base {
    background-color: #ffffff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #3A7D7C;
    text-decoration: none;
    letter-spacing: 0.05em;
}

.nav-menu {
    display: none;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    color: #4b5563;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s;
}

.nav-link:hover {
    color: #3A7D7C;
}

.nav-button {
    padding: 0.5rem 1.25rem;
    background-color: #3A7D7C;
    color: #ffffff;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.15s;
}

.nav-button:hover {
    background-color: #3B9C9C;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: #4b5563;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #F0F9F9 0%, #E6F2F2 100%);
    padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 8rem 1.5rem;
    }
}

.hero-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: #404040;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-headline {
        font-size: 3.5rem;
    }
}

.text-teal {
    color: #3A7D7C;
}

.text-indigo-600 {
    color: #3A7D7C;
}

.hero-subtext {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.mt-10 {
    margin-top: 2.5rem;
}

.cta-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #3A7D7C;
    color: #ffffff;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    margin: 0 0.5rem 1rem;
    transition: background-color 0.15s, transform 0.15s;
}

.cta-primary:hover {
    background-color: #3B9C9C;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #ffffff;
    color: #3A7D7C;
    font-weight: 600;
    border-radius: 0.5rem;
    border: 2px solid #3A7D7C;
    text-decoration: none;
    margin: 0 0.5rem 1rem;
    transition: background-color 0.15s, transform 0.15s;
}

.cta-secondary:hover {
    background-color: #F0F9F9;
    transform: translateY(-2px);
}

/* Section Styles */
.section-padding {
    padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 6rem 1.5rem;
    }
}

.bg-white {
    background-color: #ffffff;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.text-center {
    text-align: center;
}

.mt-12 {
    margin-top: 3rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.header-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    color: #3A7D7C;
}

.header-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3A7D7C;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .header-title {
        font-size: 3.125rem;
    }
}

.header-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
}

/* Services Grid */
.grid-3-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-3-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3-cols {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition-duration: 300ms;
    border: 1px solid #E6F2F2;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #B0DCDC;
    transform: translateY(-5px);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #404040;
    margin-bottom: 0.75rem;
}

.card-text {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
}

.card-title-link {
    color: inherit;
    text-decoration: none;
    transition-duration: 150ms;
}

.card-title-link:hover {
    color: #3B9C9C;
    text-decoration: underline;
}

/* Icon Styles */
.icon-style {
    width: 3rem;
    height: 3rem;
    color: #3A7D7C;
    margin-bottom: 1rem;
}

.icon-style svg {
    width: 100%;
    height: 100%;
}

/* Link Styles */
.link-style {
    color: #3A7D7C;
    font-weight: 500;
    transition-duration: 150ms;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
}

.link-style:hover {
    color: #2E6B6B;
}

.link-style svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .link-style svg {
    transform: translateX(4px);
}

/* CTA Buttons */
.cta-primary-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-width: 1px;
    border-color: transparent;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.5rem;
    color: #ffffff;
    background-color: #3A7D7C;
    transition-duration: 150ms;
    cursor: pointer;
    text-decoration: none;
}

.cta-primary-small:hover {
    background-color: #3B9C9C;
}

.cta-primary-small svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

/* Approach Section */
.approach-step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
}

.bg-light-purple {
    background-color: #e0e7ff;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #404040;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #3A7D7C 0%, #3B9C9C 100%);
    padding: 5rem 1.5rem;
}

.cta-banner-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta-banner-title {
        font-size: 3rem;
    }
}

.cta-banner-subtitle {
    font-size: 1.25rem;
    color: #F0F9F9;
    margin-bottom: 2rem;
}

.cta-banner-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #3A7D7C;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}

.cta-banner-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Service Detail Page */
.service-detail-content-wrapper {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
    .service-detail-content-wrapper {
        padding: 3rem;
    }
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .service-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-card {
    background-color: #F0F9F9;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #E6F2F2;
}

.benefit-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2E6B6B;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Footer */
.footer-base {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 3rem 1.5rem 1.5rem;
}

.grid-4-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .grid-4-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-4-cols {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #3B9C9C;
    margin-bottom: 1rem;
}

.footer-heading-secondary {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 2;
    transition: color 0.15s;
}

.footer-link:hover {
    color: #B0DCDC;
}

.footer-text {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.8;
    margin: 0;
}

.footer-copy {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Utility */
.hidden {
    display: none;
}

.text-left {
    text-align: left;
}

/* Simple fade-in animation */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}