* {
    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: #2c3e50;
    background: #ffffff;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c7a7b;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c7a7b;
}

.ad-label {
    font-size: 0.75rem;
    color: #718096;
    padding: 0.25rem 0.75rem;
    background: #f7fafc;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background: #f7fafc;
}

.hero-left {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero-left h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c7a7b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #285e61;
}

.hero-right {
    flex: 1;
    background: #81e6d9;
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-section {
    display: flex;
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.intro-content {
    flex: 1.2;
}

.intro-content h2 {
    font-size: 2.25rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
}

.intro-visual {
    flex: 1;
    background: #b2f5ea;
}

.intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.services-grid {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #718096;
}

.service-card {
    display: flex;
    margin-bottom: 3rem;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    gap: 2rem;
}

.service-card.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background: #e6fffa;
    min-height: 300px;
}

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

.service-info {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.75rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.service-info p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c7a7b;
    margin-bottom: 1.5rem;
}

.select-service {
    padding: 0.875rem 2rem;
    background: #2c7a7b;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.select-service:hover {
    background: #285e61;
}

.select-service.selected {
    background: #38b2ac;
}

.approach-section {
    background: linear-gradient(135deg, #2c7a7b 0%, #38b2ac 100%);
    padding: 5rem 2rem;
    margin: 6rem 0;
}

.approach-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-wrapper h2 {
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.approach-item {
    flex: 1;
    min-width: 250px;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.approach-item h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.approach-item p {
    color: #e6fffa;
    font-size: 1.125rem;
}

.testimonial-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.testimonial-content {
    flex: 1.3;
}

.testimonial-content blockquote {
    border-left: 4px solid #2c7a7b;
    padding-left: 2rem;
}

.testimonial-content p {
    font-size: 1.375rem;
    color: #2d3748;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-size: 1rem;
    color: #718096;
    font-style: normal;
}

.testimonial-image {
    flex: 1;
    background: #e6fffa;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.cta-form-section {
    background: #f7fafc;
    padding: 5rem 2rem;
    margin: 6rem 0 0 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 2.25rem;
    color: #1a202c;
    margin-bottom: 1rem;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: #4a5568;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c7a7b;
}

.cta-submit {
    padding: 1rem 2rem;
    background: #2c7a7b;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-submit:hover {
    background: #285e61;
}

.main-footer {
    background: #1a202c;
    color: #e2e8f0;
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.footer-col a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #81e6d9;
}

.footer-col p {
    color: #cbd5e0;
    font-size: 0.95rem;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 0.875rem;
    color: #a0aec0;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    text-align: center;
    color: #718096;
    font-size: 0.875rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #81e6d9;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-accept {
    background: #2c7a7b;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #285e61;
}

.cookie-reject {
    background: #4a5568;
    color: #ffffff;
}

.cookie-reject:hover {
    background: #2d3748;
}

.thanks-container {
    max-width: 800px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3rem;
    color: #2c7a7b;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.thanks-container .selected-service-display {
    font-size: 1.5rem;
    color: #1a202c;
    font-weight: 600;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 8px;
}

.thanks-container a {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #2c7a7b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-container a:hover {
    background: #285e61;
}

.about-hero {
    background: linear-gradient(135deg, #2c7a7b 0%, #38b2ac 100%);
    padding: 6rem 2rem;
    text-align: center;
    color: #ffffff;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-hero p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    color: #e6fffa;
}

.about-content {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.about-content h2 {
    font-size: 2.25rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

.about-content p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.about-content li {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 0.75rem;
}

.services-list-page {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.services-list-page h1 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.services-list-page .intro-text {
    font-size: 1.25rem;
    color: #718096;
    margin-bottom: 4rem;
}

.contact-hero {
    background: #f7fafc;
    padding: 5rem 2rem;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-content h1 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.contact-content p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info-item {
    flex: 1;
    min-width: 250px;
}

.contact-info-item h3 {
    font-size: 1.5rem;
    color: #2c7a7b;
    margin-bottom: 1rem;
}

.contact-info-item p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.legal-page {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.legal-page h1 {
    font-size: 2.75rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.legal-page .last-updated {
    color: #718096;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-page p {
    font-size: 1.0625rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page li {
    font-size: 1.0625rem;
    color: #4a5568;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .intro-section {
        flex-direction: column;
    }

    .service-card,
    .service-card.reverse {
        flex-direction: column;
    }

    .testimonial-section {
        flex-direction: column;
    }

    .approach-grid {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}