:root {
    --color-primary: #2c3e50;
    --color-secondary: #3498db;
    --color-accent: #e74c3c;
    --color-light: #ecf0f1;
    --color-dark: #1a252f;
    --color-text: #2c3e50;
    --color-text-light: #7f8c8d;
    --color-white: #ffffff;
    --color-border: #bdc3c7;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
}

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

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-dark);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

.ad-disclosure {
    background-color: var(--color-dark);
    color: var(--color-white);
    text-align: center;
    padding: 8px 16px;
    font-size: 0.85rem;
}

.header {
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.logo:hover {
    color: var(--color-secondary);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: var(--color-text);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--color-secondary);
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-secondary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-dark);
    transition: var(--transition);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-color: var(--color-secondary);
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
    color: var(--color-white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.btn-secondary:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.btn-light {
    background-color: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.btn-light:hover {
    background-color: var(--color-light);
    border-color: var(--color-light);
    color: var(--color-primary);
}

.btn-block {
    display: block;
    width: 100%;
}

.split-section {
    padding: 0;
}

.split-content {
    display: flex;
    min-height: 500px;
}

.split-text {
    flex: 1;
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.split-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-section.reverse .split-content {
    flex-direction: row-reverse;
}

.hero .split-text h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.hero .split-text p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.features-section {
    padding: 80px 0;
    background-color: var(--color-light);
}

.features-grid {
    display: flex;
    gap: 32px;
}

.feature-card {
    flex: 1;
    text-align: center;
    padding: 32px 24px;
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    color: var(--color-secondary);
    margin-bottom: 16px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

.service-name {
    font-weight: 500;
}

.service-price {
    font-weight: 700;
    color: var(--color-secondary);
}

.process-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.process-steps {
    display: flex;
    gap: 24px;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 24px;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.process-step h3 {
    margin-bottom: 8px;
}

.process-step p {
    color: var(--color-text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.testimonial-section {
    padding: 80px 0;
    background-color: var(--color-light);
}

.testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-card blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 24px;
}

.testimonial-card blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--color-secondary);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 600;
    color: var(--color-dark);
}

.author-location {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    color: var(--color-white);
}

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

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-content p {
    margin-bottom: 24px;
    opacity: 0.9;
}

.page-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
    text-align: center;
}

.page-hero .lead {
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.values-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    padding: 32px;
    background-color: var(--color-light);
    border-radius: 12px;
}

.value-card h3 {
    color: var(--color-secondary);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.stats-section {
    padding: 64px 0;
    background-color: var(--color-primary);
    color: var(--color-white);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.certifications-section {
    padding: 64px 0;
    background-color: var(--color-light);
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    margin-top: -32px;
    margin-bottom: 40px;
}

.cert-list {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cert-item {
    background-color: var(--color-white);
    padding: 20px 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    font-weight: 500;
}

.services-intro {
    padding: 40px 0;
    background-color: var(--color-white);
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.services-grid-section {
    padding: 40px 0 80px;
}

.services-category {
    margin-bottom: 64px;
}

.services-category h2 {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-light);
}

.services-cards {
    display: flex;
    gap: 32px;
}

.service-card {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card-image {
    height: 200px;
    overflow: hidden;
}

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

.service-card-content {
    padding: 24px;
    background-color: var(--color-white);
}

.service-card-content h3 {
    margin-bottom: 12px;
}

.service-card-content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.service-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.service-card-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.service-card-price .price-note {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.pricing-info {
    padding: 0 0 80px;
}

.pricing-box {
    background-color: var(--color-light);
    padding: 40px;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-box h2 {
    margin-bottom: 20px;
}

.pricing-box ul {
    margin-bottom: 0;
}

.pricing-box li {
    color: var(--color-text-light);
}

.contact-info-block {
    background-color: var(--color-light);
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    color: var(--color-secondary);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-detail p {
    margin-bottom: 0;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 0;
}

.hours-list li:last-child {
    border-bottom: none;
}

.split-form {
    flex: 1;
    padding: 64px 48px;
    background-color: var(--color-white);
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
}

.form-intro {
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.faq-section {
    padding: 80px 0;
    background-color: var(--color-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-white);
    padding: 24px 32px;
    margin-bottom: 16px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    color: var(--color-primary);
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.faq-item p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.thanks-section {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.service-confirmation {
    background-color: var(--color-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.service-confirmation p {
    margin-bottom: 0;
}

.thanks-info {
    text-align: left;
    background-color: var(--color-light);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.thanks-info h2 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.next-steps {
    margin-bottom: 0;
    padding-left: 24px;
}

.next-steps li {
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.next-steps li:last-child {
    margin-bottom: 0;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.legal-section {
    padding: 80px 0;
}

.legal-date {
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.legal-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content h3 {
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.legal-content p,
.legal-content li {
    color: var(--color-text-light);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.cookie-table th {
    background-color: var(--color-light);
    font-weight: 600;
    color: var(--color-dark);
}

.cookie-table td {
    color: var(--color-text-light);
}

.footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 64px 0 32px;
}

.footer-grid {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: var(--color-text-light);
    font-size: 0.95rem;
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--color-white);
}

.email-display {
    color: var(--color-text-light);
    user-select: all;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 8px;
}

.copyright {
    margin-top: 16px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 24px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform var(--transition);
}

.cookie-banner.visible {
    transform: translateY(0);
}

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

.cookie-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--color-secondary);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .split-content {
        flex-direction: column;
        min-height: auto;
    }

    .split-section.reverse .split-content {
        flex-direction: column;
    }

    .split-image {
        height: 300px;
        position: relative;
    }

    .split-text,
    .split-form {
        padding: 48px 24px;
    }

    .features-grid,
    .process-steps {
        flex-direction: column;
    }

    .services-cards {
        flex-direction: column;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(50% - 24px);
        min-width: 200px;
    }

    .stats-grid {
        flex-wrap: wrap;
        gap: 32px;
    }

    .stat-item {
        flex: 1 1 calc(50% - 16px);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--color-white);
        box-shadow: var(--shadow-lg);
        transition: right var(--transition);
        padding: 80px 24px 24px;
        z-index: 1001;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-list li {
        border-bottom: 1px solid var(--color-border);
    }

    .nav-list a {
        display: block;
        padding: 16px 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1002;
    }

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

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

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

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

    .footer-col {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .thanks-actions {
        flex-direction: column;
    }

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

    .value-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 12px 16px;
    }

    .container {
        padding: 0 16px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .page-hero {
        padding: 48px 0;
    }

    .features-section,
    .process-section,
    .testimonial-section,
    .cta-section,
    .values-section,
    .faq-section {
        padding: 48px 0;
    }

    .stat-number {
        font-size: 2rem;
    }
}
