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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.3;
    margin-bottom: 0.8em;
    font-weight: 700;
}

h1 {
    font-size: 2.8em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2.2em;
    margin-top: 1.5em;
}

h3 {
    font-size: 1.6em;
}

h4 {
    font-size: 1.3em;
}

p {
    margin-bottom: 1.2em;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

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

.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.4em;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-menu li a {
    color: var(--text-dark);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--accent-color);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

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

.btn-sticky {
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(231, 76, 60, 0.4);
}

.editorial-container {
    max-width: 100%;
}

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

.hero-editorial {
    padding: 4rem 0 3rem;
}

.hero-text-center {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-text-center h1 {
    font-size: 3em;
    line-height: 1.2;
    margin-bottom: 0.6em;
}

.lead {
    font-size: 1.3em;
    color: var(--text-light);
    line-height: 1.6;
}

.hero-image {
    margin: 3rem 0;
}

.hero-image img {
    width: 100%;
    border-radius: 4px;
}

.story-section,
.problem-section,
.insight-section,
.trust-section,
.transition-section,
.services-reveal,
.urgency-section,
.form-section,
.final-push {
    padding: 4rem 0;
}

.inline-image {
    margin: 2.5rem 0;
}

.inline-image img {
    border-radius: 4px;
}

.highlight-text {
    font-size: 1.2em;
    font-style: italic;
    color: var(--secondary-color);
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 4px solid var(--secondary-color);
}

.big-quote {
    font-size: 1.8em;
    line-height: 1.5;
    font-style: italic;
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    color: var(--primary-color);
}

.stats-inline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

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

.stat-number {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3em;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 1em;
    color: var(--text-light);
}

.method-reveal {
    background-color: var(--bg-light);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.method-reveal h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.custom-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.custom-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

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

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

.btn-text-link {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--accent-color);
}

.testimonial-story {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 1.1em;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95em;
    color: var(--text-light);
}

.difference-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.diff-item {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.diff-item:last-child {
    border-bottom: none;
}

.diff-item h4 {
    color: var(--accent-color);
    margin-bottom: 0.8rem;
}

.section-intro {
    font-size: 1.2em;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-card {
    border: 2px solid var(--border-color);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 8px;
    transition: border-color 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--accent-color);
}

.service-card.featured {
    border-color: var(--secondary-color);
    border-width: 3px;
}

.badge {
    position: absolute;
    top: -15px;
    left: 2rem;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.85em;
    font-weight: 600;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-header h3 {
    font-size: 1.8em;
    margin-bottom: 0;
}

.duration {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9em;
    color: var(--text-light);
}

.service-desc {
    font-size: 1.05em;
    margin: 1.5rem 0;
}

.service-includes {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-includes li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

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

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

.price-amount {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    color: var(--primary-color);
}

.price-note {
    font-size: 0.95em;
    color: var(--text-light);
}

.btn-service {
    width: 100%;
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.urgency-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 2rem;
    margin: 2rem 0;
}

.urgency-text {
    font-size: 1.15em;
    margin-bottom: 1rem;
}

.urgency-text strong {
    color: var(--secondary-color);
}

.form-intro {
    font-size: 1.1em;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.enroll-form {
    margin: 2rem 0;
}

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

.form-group label {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.btn-submit {
    width: 100%;
    background-color: var(--secondary-color);
    color: white;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.2em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.final-statement {
    font-size: 1.3em;
    font-weight: 600;
    text-align: center;
    margin: 2rem 0;
}

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

.btn-final {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.2em;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-final:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

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

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1em;
}

.footer-section p {
    font-size: 0.9em;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    font-size: 0.95em;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.85em;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    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;
}

.cookie-content a {
    color: #3498db;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--success-color);
    color: white;
}

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

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

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

.page-header {
    padding: 4rem 0 2rem;
    border-bottom: 2px solid var(--border-color);
}

.page-header h1 {
    font-size: 2.5em;
}

.last-updated {
    font-size: 0.9em;
    color: var(--text-light);
    font-style: italic;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.team-member {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.team-member:last-child {
    border-bottom: none;
}

.team-member h3 {
    margin-bottom: 0.3rem;
}

.role {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--accent-color);
    font-size: 0.95em;
    margin-bottom: 0.8rem;
}

.philosophy-points {
    margin: 2rem 0;
}

.philosophy-item {
    margin: 2rem 0;
}

.philosophy-item h3 {
    color: var(--accent-color);
    margin-bottom: 0.8rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

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

.service-card-detailed {
    border: 2px solid var(--border-color);
    padding: 2.5rem;
    margin: 4rem 0;
    border-radius: 8px;
    position: relative;
}

.service-card-detailed.featured {
    border-color: var(--secondary-color);
    border-width: 3px;
}

.service-desc-long {
    font-size: 1.1em;
    color: var(--text-light);
    margin: 1.5rem 0;
}

.curriculum {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.curriculum-part {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 4px;
}

.curriculum-part h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.curriculum-part ul {
    list-style: none;
    padding: 0;
}

.curriculum-part ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.curriculum-part ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.projects-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.projects-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.projects-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.detail-item {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95em;
}

.comparison-guide {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.guide-item {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    border-left: 4px solid var(--accent-color);
}

.guide-item h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.guide-item ul {
    list-style: none;
    padding: 0;
}

.guide-item ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.guide-item ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.help-box {
    background-color: #e8f4f8;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 8px;
    text-align: center;
}

.help-box strong {
    font-size: 1.2em;
}

.faq-section {
    margin: 3rem 0;
}

.faq-item {
    margin: 2rem 0;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-method {
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-method h2 {
    font-size: 1.6em;
    margin-bottom: 0.8rem;
}

.contact-link {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--accent-color);
}

.contact-address {
    font-style: normal;
    line-height: 1.8;
    margin: 1rem 0;
}

.hours {
    margin: 1rem 0;
}

.small-note {
    font-size: 0.9em;
    color: var(--text-light);
    margin-top: 1rem;
}

.faq-compact {
    margin: 2rem 0;
}

.reasons-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.reason-box {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.reason-box h3 {
    color: var(--accent-color);
    margin-bottom: 0.8rem;
}

.map-note {
    background-color: #fff3cd;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
    border-left: 4px solid #ffc107;
}

.social-links {
    margin: 1.5rem 0;
}

.social-links p {
    margin-bottom: 0.8rem;
}

.thanks-section {
    padding: 4rem 0;
}

.thanks-content {
    text-align: center;
}

.success-icon {
    font-size: 4em;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.thanks-details {
    margin: 3rem 0;
    text-align: left;
}

.steps-list {
    list-style: decimal;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.steps-list li {
    margin-bottom: 1.5rem;
    padding-left: 0.5rem;
}

.thanks-note {
    background-color: #e8f4f8;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.service-reminder {
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 1rem;
    display: none;
}

.resources-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.resource-card {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.resource-card:hover {
    background-color: #d5dbdb;
    transform: translateX(5px);
}

.resource-card h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

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

.social-proof {
    margin: 4rem 0;
    text-align: center;
}

.stats-mini {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.stat-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number-mini {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label-mini {
    font-size: 0.9em;
    color: var(--text-light);
}

.back-link {
    text-align: center;
    margin: 3rem 0;
}

.legal-page h2 {
    font-size: 1.8em;
    margin-top: 2.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

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

.legal-page h3 {
    font-size: 1.4em;
    margin-top: 2rem;
}

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

.legal-page li {
    margin-bottom: 0.8rem;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95em;
}

.cookies-table thead {
    background-color: var(--bg-light);
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    font-weight: 600;
    color: var(--primary-color);
}

@media (min-width: 768px) {
    .sticky-cta {
        display: block;
    }

    .stats-inline {
        flex-direction: row;
        justify-content: space-around;
    }

    .difference-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .diff-item {
        flex: 0 0 calc(50% - 1rem);
        border-bottom: none;
        padding-bottom: 0;
    }

    .curriculum {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .curriculum-part {
        flex: 0 0 calc(50% - 1rem);
    }

    .contact-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-method {
        flex: 0 0 calc(50% - 1.5rem);
        border-bottom: none;
    }

    .reasons-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .reason-box {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .resources-grid {
        flex-direction: row;
    }

    .resource-card {
        flex: 1;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.6em;
    }

    .hero-text-center h1 {
        font-size: 2.2em;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .hamburger {
        display: flex;
    }

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

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

    .narrow-content {
        padding: 0 1.5rem;
    }

    .service-card,
    .service-card-detailed {
        padding: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
    }

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

    .cookie-buttons {
        justify-content: stretch;
        flex-direction: column;
    }
}
