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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7f;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #27ae60;
    --shadow: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    font-size: 17px;
    overflow-x: hidden;
}

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

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

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

.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: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

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

.nav-menu li a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

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

.hero-visual {
    margin-top: 70px;
    min-height: 85vh;
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.92), rgba(44, 95, 127, 0.88)), url('../images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    width: 100%;
}

.hero-content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: white;
}

.hero-content-narrow h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-subtext {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.cta-hero:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
    color: white;
}

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

.intro-text {
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 500;
}

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

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

.container-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-image,
.split-content {
    flex: 1;
}

.split-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.3;
}

.split-content p {
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

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

.cta-inline {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 18px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 3px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    color: #d35400;
    border-color: #d35400;
    transform: translateX(5px);
}

.problem-amplify {
    padding: 100px 0;
    background: var(--primary-color);
    color: white;
}

.problem-amplify h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: white;
}

.problem-amplify p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 26px;
    font-weight: 600;
    color: var(--accent-color);
    margin: 35px 0;
    line-height: 1.5;
}

.trust-builder {
    padding: 100px 0;
    background: var(--bg-white);
}

.trust-builder h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

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

.card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.testimonials-flow {
    padding: 90px 0;
    background: var(--bg-light);
}

.testimonials-flow h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.testimonial {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-color);
    border-radius: 6px;
    box-shadow: var(--shadow);
}

.testimonial blockquote {
    font-size: 19px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

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

.container-split-reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
    align-items: center;
}

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

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

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

.service-selection {
    padding: 100px 0;
    background: var(--bg-light);
}

.service-selection h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.service-options {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 320px;
    background: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(230, 126, 34, 0.3);
}

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

.service-price {
    font-size: 34px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

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

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

.btn-select:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 58, 82, 0.3);
}

.urgency-block {
    padding: 90px 0;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    text-align: center;
}

.urgency-block h2 {
    font-size: 44px;
    margin-bottom: 25px;
    color: white;
}

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

.urgency-highlight {
    font-size: 28px;
    font-weight: 700;
    margin: 35px 0;
}

.cta-urgency {
    display: inline-block;
    background: white;
    color: #e74c3c;
    padding: 18px 50px;
    font-size: 19px;
    font-weight: 700;
    border-radius: 6px;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cta-urgency:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
    color: #c0392b;
}

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

.form-section h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: center;
}

.form-intro {
    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;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.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);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

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

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 15px;
}

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

.btn-submit:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(230, 126, 34, 0.4);
}

.final-cta {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.cta-final {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 18px 50px;
    font-size: 19px;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-final:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 58, 82, 0.3);
    color: white;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 18px 20px;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.15);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

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

.sticky-content span {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.btn-sticky {
    background: var(--accent-color);
    color: white;
    padding: 12px 35px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #d35400;
    color: white;
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 58, 82, 0.97);
    color: white;
    padding: 25px;
    z-index: 10000;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

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

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

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

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

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

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

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

.page-header {
    margin-top: 70px;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

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

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

.about-story,
.about-mission,
.about-values,
.about-numbers,
.about-approach,
.services-intro,
.services-detailed,
.services-comparison,
.contact-info,
.contact-cta {
    padding: 80px 0;
}

.about-story {
    background: var(--bg-white);
}

.about-story h2,
.about-mission h2,
.about-values h2,
.about-numbers h2,
.about-approach h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-story p,
.about-mission p,
.about-approach p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-mission {
    background: var(--bg-light);
}

.mission-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.mission-text,
.mission-image {
    flex: 1;
}

.mission-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.about-values {
    background: var(--bg-white);
}

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

.value-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
}

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

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

.about-numbers {
    background: var(--primary-color);
    color: white;
}

.about-numbers h2 {
    color: white;
    text-align: center;
    margin-bottom: 50px;
}

.numbers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.number-item {
    text-align: center;
    flex: 1 1 200px;
}

.number {
    font-size: 56px;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.number-item p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
}

.about-approach {
    background: var(--bg-white);
}

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

.cta-about h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.cta-button,
.btn-service,
.btn-cta,
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

.cta-button,
.btn-service,
.btn-cta,
.btn-primary {
    background: var(--accent-color);
    color: white;
}

.cta-button:hover,
.btn-service:hover,
.btn-cta:hover,
.btn-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(230, 126, 34, 0.4);
    color: white;
}

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

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

.services-intro {
    background: var(--bg-white);
}

.services-intro p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
}

.services-detailed {
    background: var(--bg-light);
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

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

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50px;
    background: var(--accent-color);
    color: white;
    padding: 8px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
}

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

.service-detail-content h2 {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-price-large {
    font-size: 42px;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-description {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-detail-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
    margin: 20px 0;
}

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

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

.service-detail-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.services-comparison {
    background: var(--bg-white);
    text-align: center;
}

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

.services-comparison p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info {
    background: var(--bg-white);
}

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details,
.contact-visual {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

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

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

.contact-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item a {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-visual img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.contact-cta {
    background: var(--bg-light);
    text-align: center;
}

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

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

.thanks-section {
    margin-top: 70px;
    padding: 100px 0;
    background: var(--bg-light);
}

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

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

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

.thanks-info {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.thanks-steps {
    padding-left: 25px;
}

.thanks-steps li {
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

.thanks-service-info {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid var(--accent-color);
}

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

.legal-page {
    margin-top: 70px;
    padding: 80px 0;
    background: var(--bg-white);
}

.legal-page h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

.legal-page h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.legal-page ul {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.legal-actions {
    margin-top: 50px;
    text-align: center;
}

.btn-back {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 14px 35px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    color: white;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .hero-content-narrow h1 {
        font-size: 36px;
    }

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

    .container-split,
    .container-split-reverse,
    .mission-content,
    .contact-grid,
    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
    }

    .cards-grid {
        flex-direction: column;
    }

    .card {
        flex: 1 1 100%;
    }

    .service-options {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .values-grid {
        flex-direction: column;
    }

    .value-item {
        flex: 1 1 100%;
    }

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

    .sticky-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .service-detail {
        padding: 30px 20px;
    }
}
