* {
    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: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

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

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
}

.nav-brand {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

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

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-white);
    list-style: none;
    padding: 100px 40px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.nav-menu li a {
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
}

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

.sticky-cta-btn {
    background: var(--secondary-color);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
    display: block;
}

.sticky-cta-btn:hover {
    background: #C0392B;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(231, 76, 60, 0.4);
    color: white;
}

.hero-visual {
    margin-top: 70px;
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    padding: 80px 30px 50px;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.95) 0%, rgba(52, 73, 94, 0.88) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
}

.hero-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
    max-width: 600px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 550px;
}

.hero-cta {
    display: flex;
    gap: 15px;
}

.btn-hero {
    background: var(--secondary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.hero-image {
    position: relative;
    flex: 1;
    min-height: 400px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.story-intro h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 700;
}

.intro-text {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.intro-text.highlight {
    background: #FFF3CD;
    padding: 25px;
    border-left: 4px solid #F39C12;
    font-weight: 600;
    color: #856404;
}

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

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.problem-text h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 700;
}

.problem-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.problem-image {
    order: -1;
}

.problem-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

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

.insight-reveal h2 {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--primary-color);
}

.insight-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.insight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 30px;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.25);
}

.insight-stat {
    font-size: 22px;
    line-height: 1.6;
    color: white;
    font-weight: 600;
    margin: 0;
}

.inline-cta-soft {
    padding: 60px 20px;
    background: #F8F9FA;
}

.cta-soft-box {
    background: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.cta-soft-box p {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 500;
}

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

.btn-secondary:hover {
    background: #2980B9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
    color: white;
}

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

.trust-grid-reverse {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.trust-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
}

.trust-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.trust-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-inline {
    padding: 70px 20px;
    background: var(--primary-color);
}

.testimonial-quote {
    font-size: 24px;
    line-height: 1.7;
    color: white;
    font-style: italic;
    border-left: 5px solid var(--secondary-color);
    padding-left: 30px;
    margin: 0;
}

.testimonial-quote cite {
    display: block;
    margin-top: 20px;
    font-size: 18px;
    font-style: normal;
    opacity: 0.85;
}

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

.benefits-reveal h2 {
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.benefit-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.benefit-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.2;
    min-width: 80px;
}

.benefit-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.benefit-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

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

.social-proof h2 {
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

.value-stack h2 {
    font-size: 32px;
    margin-bottom: 35px;
    font-weight: 700;
}

.value-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.value-list li {
    font-size: 18px;
    padding-left: 35px;
    position: relative;
    line-height: 1.6;
}

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

.pricing-reveal {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.pricing-reveal h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

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

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.badge-popular {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
}

.service-image {
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    font-weight: 700;
}

.service-desc {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 25px 15px;
    color: var(--text-dark);
}

.service-features {
    font-size: 14px;
    margin: 0 25px 20px;
    color: var(--text-light);
    font-style: italic;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 25px 25px;
}

.btn-select {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #2980B9;
    transform: translateY(-2px);
}

.urgency-section {
    padding: 70px 20px;
    background: #FFF3CD;
}

.urgency-box {
    border-left: 5px solid #F39C12;
    padding-left: 30px;
}

.urgency-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #856404;
    font-weight: 700;
}

.urgency-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #856404;
    margin-bottom: 12px;
}

.urgency-text {
    font-weight: 700;
}

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

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

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

.order-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    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(--accent-color);
}

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

.btn-submit:hover {
    background: #C0392B;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.final-cta {
    padding: 90px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.btn-primary:hover {
    background: #C0392B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
    color: white;
}

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

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 40px;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.85;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 15px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 25px 20px;
    z-index: 10000;
    box-shadow: 0 -5px 30px 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;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    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);
}

.page-header {
    margin-top: 70px;
    padding: 80px 20px 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495E 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 800;
}

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

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

.about-section {
    margin-bottom: 50px;
}

.about-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.about-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.values-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.values-list li {
    font-size: 17px;
    line-height: 1.7;
    padding-left: 30px;
    position: relative;
}

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

.values-list strong {
    color: var(--primary-color);
}

.about-cta {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 8px;
}

.about-cta p {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.service-detail-card {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-detail-card.reverse {
    flex-direction: column;
}

.service-detail-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-price-large {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 25px 0;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

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

.services-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 35px;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 5px;
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.contact-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

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

.contact-faq h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

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

.contact-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

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

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

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

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

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 35px;
    font-weight: 700;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
    text-align: left;
}

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

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

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--primary-color);
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.thanks-service {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.thanks-service h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.service-selected {
    font-size: 24px;
    color: var(--secondary-color);
    font-weight: 800;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 40px 0;
}

.thanks-contact {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.thanks-contact p {
    font-size: 16px;
    margin-bottom: 8px;
}

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

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

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 800;
    color: var(--primary-color);
}

.legal-date {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--primary-color);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--accent-color);
    font-weight: 600;
}

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

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

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        background: transparent;
        gap: 35px;
    }

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

    .hero-visual {
        flex-direction: row;
        min-height: 600px;
    }

    .hero-overlay {
        flex: 1;
        min-height: 600px;
        padding: 80px 50px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-image {
        flex: 1;
        min-height: 600px;
    }

    .problem-grid {
        flex-direction: row;
        align-items: center;
    }

    .problem-text {
        flex: 1;
    }

    .problem-image {
        flex: 1;
        order: 0;
    }

    .trust-grid-reverse {
        flex-direction: row;
        align-items: center;
    }

    .trust-text {
        flex: 1;
    }

    .trust-image {
        flex: 1;
    }

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

    .testimonial-card {
        flex: 1;
        min-width: 300px;
    }

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

    .service-card {
        flex: 1;
        min-width: 280px;
        max-width: calc(50% - 15px);
    }

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

    .cookie-content p {
        text-align: left;
        max-width: 70%;
    }

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

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

    .contact-grid {
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-info {
        flex: 1;
    }

    .contact-image {
        flex: 1;
    }

    .service-detail-card {
        flex-direction: row;
        align-items: center;
    }

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

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

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

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 58px;
    }

    .services-grid {
        flex-wrap: nowrap;
    }

    .service-card {
        max-width: none;
    }
}
