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

:root {
    --primary-color: #2c5f7f;
    --secondary-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #27ae60;
    --danger-color: #e74c3c;
}

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

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

.container-medium {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: var(--bg-white);
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.hero-full {
    background: linear-gradient(135deg, #2c5f7f 0%, #1a3a4f 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    position: relative;
}

.hero-overlay {
    max-width: 800px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-lead {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.3);
}

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

.story-intro h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--text-dark);
    line-height: 1.3;
}

.story-intro p {
    font-size: 19px;
    margin-bottom: 25px;
    color: var(--text-light);
}

.insight-block {
    padding: 90px 20px;
    background: var(--bg-light);
}

.insight-card {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.insight-card h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.insight-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 18px;
    border-bottom: 1px solid var(--border-color);
}

.insight-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--danger-color);
    font-size: 28px;
    font-weight: 700;
}

.insight-conclusion {
    font-size: 20px;
    font-weight: 600;
    color: var(--danger-color);
    margin-top: 25px;
}

.transformation-visual {
    padding: 90px 20px;
    background: var(--primary-color);
    color: white;
}

.transform-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.transform-before,
.transform-after {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.transform-before h4,
.transform-after h4 {
    font-size: 28px;
    margin-bottom: 15px;
}

.transform-arrow {
    font-size: 48px;
    font-weight: 700;
}

.method-reveal {
    padding: 100px 20px;
    background: var(--bg-white);
}

.method-reveal h2 {
    font-size: 40px;
    margin-bottom: 25px;
}

.method-reveal p {
    font-size: 19px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.method-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

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

.method-item h5 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.social-proof h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial {
    background: white;
    padding: 35px;
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.testimonial-author {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
}

.value-layer {
    padding: 100px 20px;
    background: var(--bg-white);
}

.value-layer h2 {
    font-size: 40px;
    margin-bottom: 30px;
}

.value-layer p {
    font-size: 19px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.value-layer em {
    color: var(--primary-color);
    font-style: normal;
    font-weight: 600;
}

.cta-interlude {
    padding: 70px 20px;
    background: var(--secondary-color);
    text-align: center;
}

.cta-text {
    font-size: 28px;
    color: white;
    font-weight: 600;
    margin-bottom: 25px;
}

.btn-secondary {
    display: inline-block;
    background: white;
    color: var(--secondary-color);
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.benefits-deep {
    padding: 100px 20px;
    background: var(--bg-white);
}

.benefits-deep h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.benefit-blocks {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-block {
    padding: 35px;
    background: var(--bg-light);
    border-radius: 10px;
}

.benefit-block h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-block p {
    font-size: 17px;
    color: var(--text-light);
}

.urgency-soft {
    padding: 80px 20px;
    background: #fff3e0;
    text-align: center;
}

.urgency-soft h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.urgency-soft p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 15px;
}

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

.services-section h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 25px;
}

.services-intro {
    text-align: center;
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 60px;
}

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

.service-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

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

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

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

.service-desc {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    min-height: 60px;
}

.service-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
}

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

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
    color: var(--text-light);
}

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

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

.btn-select:hover {
    background: #1a3a4f;
}

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

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

.form-section > div > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

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

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

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

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

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

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

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

.final-push {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.final-push h3 {
    font-size: 34px;
    margin-bottom: 20px;
}

.final-push p {
    font-size: 19px;
    color: var(--text-light);
}

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

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

.sticky-cta-btn {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(230, 126, 34, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #d35400;
    transform: translateY(-2px);
}

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

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

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

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

.page-header {
    background: linear-gradient(135deg, #2c5f7f 0%, #1a3a4f 100%);
    padding: 100px 20px 80px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.page-header .lead {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
}

.about-story {
    padding: 100px 20px;
    background: var(--bg-white);
}

.about-story h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.about-story p {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--text-light);
}

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

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
}

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

.value-item {
    flex: 1;
    min-width: 240px;
    padding: 35px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

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

.value-item p {
    font-size: 16px;
    color: var(--text-light);
}

.approach-section {
    padding: 90px 20px;
    background: var(--bg-white);
}

.approach-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

.approach-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.approach-list {
    list-style: none;
    counter-reset: approach-counter;
}

.approach-list li {
    counter-increment: approach-counter;
    padding: 25px 0;
    font-size: 18px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 60px;
}

.approach-list li:before {
    content: counter(approach-counter);
    position: absolute;
    left: 0;
    top: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

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

.mission-box {
    background: var(--primary-color);
    color: white;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
}

.mission-box h2 {
    font-size: 40px;
    margin-bottom: 25px;
}

.mission-box p {
    font-size: 20px;
    line-height: 1.7;
}

.team-section {
    padding: 90px 20px;
    background: var(--bg-white);
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

.team-section p {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--text-light);
}

.cta-about {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.cta-about h3 {
    font-size: 34px;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

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

.service-full {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 2px solid var(--border-color);
}

.service-full:last-child {
    border-bottom: none;
}

.service-full h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-price-large {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.featured-inline {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-full p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
}

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

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

.service-detail-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 17px;
    color: var(--text-light);
}

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

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

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

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    border-collapse: collapse;
}

.comparison-table th {
    background: var(--primary-color);
    color: white;
    padding: 20px 15px;
    text-align: left;
    font-size: 16px;
}

.comparison-table td {
    padding: 18px 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.guarantee-section {
    padding: 70px 20px;
    background: var(--bg-white);
    text-align: center;
}

.guarantee-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--success-color);
}

.guarantee-section p {
    font-size: 18px;
    color: var(--text-light);
}

.cta-services {
    padding: 70px 20px;
    background: var(--secondary-color);
    text-align: center;
}

.cta-services h3 {
    font-size: 34px;
    color: white;
    margin-bottom: 30px;
}

.contact-info {
    padding: 80px 20px;
    background: var(--bg-white);
}

.info-block {
    text-align: center;
    margin-bottom: 60px;
}

.info-block h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.info-block p {
    font-size: 18px;
    color: var(--text-light);
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.detail-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 10px;
}

.detail-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.detail-item p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

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

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

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

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 17px;
    color: var(--text-light);
}

.cta-contact {
    padding: 70px 20px;
    background: var(--bg-white);
    text-align: center;
}

.cta-contact h3 {
    font-size: 34px;
    margin-bottom: 30px;
}

.thanks-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.thanks-box {
    background: var(--bg-light);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
}

.thanks-box h1 {
    font-size: 44px;
    margin-bottom: 25px;
    color: var(--success-color);
}

.thanks-message {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.service-selected {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-color);
}

.service-selected p {
    font-size: 18px;
    color: var(--text-dark);
}

.thanks-box h2 {
    font-size: 32px;
    margin: 40px 0 25px;
}

.next-steps {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 40px;
}

.next-steps li {
    font-size: 18px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.thanks-support {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

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

.thanks-next h3 {
    font-size: 34px;
    margin-bottom: 25px;
    text-align: center;
}

.thanks-next p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.prep-list {
    margin: 30px 0;
}

.prep-list li {
    font-size: 18px;
    padding: 12px 0;
    color: var(--text-dark);
}

.legal-page {
    padding: 80px 20px;
    background: var(--bg-white);
}

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 30px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

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

.legal-page h4 {
    font-size: 20px;
    margin: 25px 0 12px;
    color: var(--text-dark);
}

.legal-page h5 {
    font-size: 18px;
    margin: 20px 0 10px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
    margin: 20px 0 20px 25px;
}

.legal-page li {
    font-size: 17px;
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.legal-page a:hover {
    text-decoration: underline;
}

.legal-page strong {
    color: var(--text-dark);
}

.cookies-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    background: var(--bg-light);
}

.cookies-table th {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: left;
    font-size: 16px;
}

.cookies-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

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

    .nav-menu {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .transform-arrow {
        font-size: 32px;
    }

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

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

    .sticky-cta-btn {
        padding: 14px 25px;
        font-size: 14px;
    }

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

    .thanks-box {
        padding: 40px 20px;
    }

    .thanks-box h1 {
        font-size: 32px;
    }

    .comparison-table {
        font-size: 13px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
}