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

:root {
    --primary-color: #1a4d6f;
    --secondary-color: #2c7da0;
    --accent-color: #ff6b35;
    --text-dark: #1f1f1f;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --error-color: #dc3545;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 16px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.btn-cookie.accept:hover {
    background-color: #e55a2b;
}

.btn-cookie.reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

.btn-cookie.reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.editorial-layout {
    min-height: 100vh;
}

.hero-article {
    max-width: 780px;
    margin: 4rem auto 3rem;
    padding: 0 1.5rem;
}

.article-header {
    margin-bottom: 2.5rem;
}

.main-headline {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-medium);
    font-weight: 400;
}

.article-image {
    width: 100%;
    margin: 2rem 0;
}

.article-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.content-block {
    max-width: 780px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.narrow-column {
    max-width: 680px;
}

.content-block h2 {
    font-size: 2rem;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.content-block h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.content-block h4 {
    font-size: 1.2rem;
    line-height: 1.4;
    color: var(--text-dark);
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.content-block ul,
.content-block ol {
    margin: 1.5rem 0;
    padding-left: 1.8rem;
}

.content-block li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 0.8rem;
}

.content-block a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

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

.challenge-list {
    list-style: none;
    padding-left: 0;
}

.challenge-list li {
    padding-left: 1.5rem;
    position: relative;
}

.challenge-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.inline-cta-block {
    max-width: 780px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.cta-wrapper {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.cta-wrapper h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-link {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.split-visual-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visual-left {
    width: 100%;
}

.visual-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.content-right {
    width: 100%;
}

.content-right h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.testimonial-inline {
    max-width: 780px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.testimonial-content {
    background-color: var(--bg-light);
    padding: 3rem 2.5rem;
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
}

.testimonial-content blockquote {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
    font-weight: 500;
}

.services-list {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: box-shadow 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-item h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.service-duration {
    font-size: 0.95rem;
    color: var(--text-light);
}

.service-price {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.select-service {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: var(--primary-color);
}

.select-service.selected {
    background-color: var(--success-color);
}

.enrollment-form-section {
    max-width: 780px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.form-container {
    background-color: var(--bg-light);
    padding: 3rem 2.5rem;
    border-radius: 8px;
}

.form-container h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-intro {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

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

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

.form-group label {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--bg-white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group input[readonly] {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

.submit-btn {
    padding: 1.1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

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

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.final-cta-block {
    max-width: 780px;
    margin: 5rem auto;
    padding: 0 1.5rem;
}

.cta-content {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 4rem 3rem;
    border-radius: 8px;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e55a2b;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1.5rem 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta-btn {
    display: inline-block;
    padding: 1rem 1.8rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: #e55a2b;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-info-section {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.contact-blocks {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-block h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.contact-block h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 1.5rem 0 0.5rem;
    font-weight: 600;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.contact-link {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-color);
}

.location {
    margin-bottom: 1.5rem;
}

.note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.services-detailed-list {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.service-detail-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.service-detail-content h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

.service-detail-content ul {
    list-style: none;
    padding-left: 0;
}

.service-detail-content ul li {
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 0.8rem;
}

.service-detail-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.duration {
    font-size: 0.95rem;
    color: var(--text-light);
}

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

.service-detail-image {
    width: 100%;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.thanks-page .content-block ul {
    list-style: none;
    padding-left: 0;
}

.thanks-page .content-block li {
    padding-left: 1.5rem;
    position: relative;
}

.thanks-page .content-block li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.legal-page .content-block h2 {
    margin-top: 3rem;
}

.legal-page .content-block h2:first-child {
    margin-top: 0;
}

@media (min-width: 768px) {
    .main-headline {
        font-size: 3.5rem;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }

    .split-visual-section {
        flex-direction: row;
        gap: 3rem;
    }

    .visual-left {
        width: 45%;
    }

    .content-right {
        width: 55%;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

    .service-detail-item {
        flex-direction: row;
        align-items: flex-start;
    }

    .service-detail-content {
        flex: 1;
    }

    .service-detail-image {
        width: 400px;
        flex-shrink: 0;
    }
}

@media (max-width: 767px) {
    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .main-headline {
        font-size: 2.2rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

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

    .cta-wrapper {
        padding: 2rem 1.5rem;
    }

    .testimonial-content {
        padding: 2rem 1.5rem;
    }

    .testimonial-content blockquote {
        font-size: 1.15rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .cta-content {
        padding: 3rem 2rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .sticky-cta-btn {
        font-size: 0.9rem;
        padding: 0.9rem 1.5rem;
    }

    .service-detail-item {
        padding: 1.5rem;
    }
}