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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #e67e22;
    --dark-color: #1a1a1a;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray-text: #555555;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --highlight-bg: #fff3e0;
}

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

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.nav-floating {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 100;
    padding: 15px 0;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

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

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

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

.btn-sticky {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(230, 126, 34, 0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(230, 126, 34, 0.5);
}

.hero-scroll {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c5f8d 0%, #1a3a52 100%);
    z-index: -1;
}

.hero-overlay {
    text-align: center;
    color: var(--white);
    padding: 80px 20px;
    max-width: 900px;
    z-index: 1;
}

.hero-scroll h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-sub {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.5;
}

.btn-hero {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: #d47420;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.story-intro {
    padding: 80px 20px;
    background: var(--white);
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
    color: var(--primary-color);
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 20px;
}

.highlight-box {
    background: var(--highlight-bg);
    border-left: 4px solid var(--secondary-color);
    padding: 25px;
    margin: 30px 0;
    font-size: 19px;
    font-weight: 500;
}

.problem-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.problem-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.split-content {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.content-left {
    flex: 1;
    min-width: 280px;
}

.content-right {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.problem-list {
    list-style: none;
    margin-top: 20px;
}

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 18px;
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

.stat-box {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--gray-text);
}

.insight-reveal {
    padding: 80px 20px;
    background: var(--white);
}

.insight-reveal h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.timeline-visual {
    margin: 40px 0;
}

.timeline-item {
    border-left: 3px solid var(--primary-color);
    padding-left: 25px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item:before {
    content: "";
    position: absolute;
    left: -7px;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.timeline-marker {
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.cta-inline {
    margin-top: 30px;
}

.link-underline {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}

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

.trust-social {
    padding: 80px 20px;
    background: var(--light-bg);
}

.trust-social h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.how-it-works {
    padding: 80px 20px;
    background: var(--white);
}

.how-it-works h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

.steps-flow {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    background: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.step-item p {
    color: var(--gray-text);
    line-height: 1.6;
}

.benefit-breakdown {
    padding: 80px 20px;
    background: var(--light-bg);
}

.benefit-breakdown h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

.benefit-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.benefit-card {
    flex: 1;
    min-width: 260px;
    background: var(--white);
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--gray-text);
}

.benefit-value {
    display: block;
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 18px;
}

.urgency-section {
    padding: 80px 20px;
    background: var(--white);
}

.urgency-box {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 2px solid var(--secondary-color);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
}

.urgency-box h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.urgency-box p {
    font-size: 18px;
    margin-bottom: 20px;
}

.urgency-math {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 30px 0;
}

.btn-urgency {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-urgency:hover {
    background: #d47420;
    transform: translateY(-2px);
}

.services-pricing {
    padding: 80px 20px;
    background: var(--light-bg);
}

.services-pricing h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: var(--gray-text);
}

.pricing-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.price-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.price-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.features-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 18px;
}

.price-tag {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

.btn-select {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-select:hover {
    background: #234a6d;
}

.form-section {
    padding: 80px 20px;
    background: var(--white);
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--gray-text);
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: #d47420;
}

.final-cta {
    padding: 80px 20px;
    background: var(--primary-color);
    text-align: center;
    color: var(--white);
}

.final-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-final {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.site-footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.7;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: var(--white);
    padding: 25px 20px;
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #d47420;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 10px 26px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a52 100%);
    color: var(--white);
    padding: 100px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 44px;
    margin-bottom: 15px;
}

.header-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.about-content,
.services-detail,
.contact-info,
.legal-content {
    padding: 80px 20px;
}

.about-content h2,
.services-detail h2,
.contact-info h2,
.legal-content h2 {
    font-size: 32px;
    margin: 40px 0 20px 0;
    color: var(--primary-color);
}

.about-content h2:first-of-type {
    margin-top: 0;
}

.about-content p,
.services-detail p,
.contact-info p,
.legal-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.values-section {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.cta-section {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin: 50px 0;
}

.cta-section h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

.service-block {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.featured-service {
    border: 3px solid var(--secondary-color);
    position: relative;
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 40px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-description {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 30px;
}

.service-block h3 {
    font-size: 24px;
    margin: 30px 0 15px 0;
    color: var(--dark-color);
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 18px;
}

.service-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.service-pricing .price {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
}

.benefits-covered {
    padding: 80px 20px;
    background: var(--light-bg);
}

.benefits-covered h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.benefits-covered > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: var(--gray-text);
}

.programs-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.program-category {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
}

.program-category h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.program-category ul {
    list-style: none;
}

.program-category ul li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--gray-text);
}

.programs-note {
    font-style: italic;
    color: var(--gray-text);
    text-align: center;
}

.service-cta {
    padding: 60px 20px;
    background: var(--primary-color);
    text-align: center;
    color: var(--white);
}

.service-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--white);
}

.service-cta p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.contact-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1.5;
    min-width: 300px;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 15px;
    color: var(--gray-text);
    margin-top: 10px;
}

.contact-item ul {
    margin-top: 10px;
}

.contact-item ul li {
    padding: 5px 0;
}

.map-placeholder {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-placeholder p {
    font-size: 16px;
    margin-bottom: 15px;
}

.contact-cta {
    padding: 60px 20px;
    background: var(--primary-color);
    text-align: center;
    color: var(--white);
}

.thanks-content {
    padding: 80px 20px;
    min-height: 60vh;
}

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

.checkmark-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-box h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 50px;
    color: var(--gray-text);
}

.next-steps {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.step-timeline {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.timeline-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-icon {
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--gray-text);
    font-size: 16px;
}

.service-confirmation {
    background: var(--highlight-bg);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.service-confirmation h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.selected-service {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.thanks-actions {
    margin-bottom: 40px;
}

.thanks-actions h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.action-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.contact-reminder {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.legal-content h3 {
    font-size: 24px;
    margin: 30px 0 15px 0;
    color: var(--dark-color);
}

.legal-content ul,
.legal-content ol {
    margin: 15px 0 15px 30px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.update-date {
    font-style: italic;
    color: var(--gray-text);
    margin-bottom: 30px;
}

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

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

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

@media (max-width: 768px) {
    .hero-scroll h1 {
        font-size: 32px;
    }

    .hero-sub {
        font-size: 18px;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .btn-sticky {
        padding: 12px 20px;
        font-size: 14px;
    }

    .nav-links {
        gap: 20px;
    }

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

    .price-card.featured {
        transform: scale(1);
    }

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

    .page-header h1 {
        font-size: 32px;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}