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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e4e8;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

.main-content {
    min-height: calc(100vh - 200px);
}

.hero-editorial {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #cbd5e0;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.92);
    padding: 3rem 2.5rem;
    max-width: 700px;
    margin: 0 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: #1a202c;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
}

.editorial-content {
    background-color: #ffffff;
    padding: 4rem 2rem;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.content-narrow h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #1a202c;
    font-weight: 800;
}

.content-narrow h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
    font-weight: 700;
}

.content-narrow h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 2rem;
    font-weight: 400;
}

.content-narrow p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.8rem;
    color: #4a5568;
}

.inline-image {
    margin: 3rem 0;
    background-color: #edf2f7;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-inline {
    margin: 3rem 0;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #2c3e50;
    cursor: pointer;
    margin: 0.5rem;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 3rem 0;
}

.service-card {
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
    padding: 2rem;
    border-radius: 8px;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-card h3 {
    margin-top: 0;
    font-size: 1.6rem;
    color: #2c3e50;
}

.service-card p {
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 1.5rem 0;
}

.service-price-large {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2c3e50;
    margin: 1rem 0 1.5rem 0;
}

.btn-select-service {
    padding: 0.9rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #1a252f;
}

.form-section {
    margin: 4rem 0;
    padding: 3rem;
    background-color: #f7fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.form-section h2 {
    margin-top: 0;
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #2d3748;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: #ffffff;
}

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

.btn-submit {
    padding: 1.1rem 3rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #1a252f;
}

.disclaimer-section {
    margin: 4rem 0 2rem 0;
    padding: 2rem;
    background-color: #fff9e6;
    border-left: 4px solid #f6ad55;
    border-radius: 4px;
}

.disclaimer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #744210;
    margin-bottom: 0;
}

.service-detail {
    margin: 4rem 0;
}

.contact-details {
    margin: 3rem 0;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h3 {
    margin-top: 0;
}

.email-display {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.office-note {
    font-size: 0.95rem;
    color: #718096;
    font-style: italic;
}

.thanks-container {
    padding: 2rem 0;
}

.confirmation-box {
    background-color: #f0fff4;
    border: 2px solid #9ae6b4;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.confirmation-box h2 {
    margin-top: 0;
    color: #22543d;
}

.next-steps {
    margin: 3rem 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-reminder {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #edf2f7;
    border-radius: 8px;
}

.last-updated {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 2rem;
    font-style: italic;
}

.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #4a5568;
    text-align: center;
    font-size: 0.9rem;
    color: #cbd5e0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    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 {
    margin: 0;
    flex: 1;
    min-width: 250px;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #38a169;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background-color: #ffffff;
    color: #1a202c;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

    .content-narrow h1 {
        font-size: 2.2rem;
    }

    .content-narrow h2 {
        font-size: 1.7rem;
    }

    .intro-text {
        font-size: 1.15rem;
    }

    .content-narrow p {
        font-size: 1.05rem;
    }

    .footer-content {
        flex-direction: column;
    }

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

    .thanks-actions a {
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}
