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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
}

.ad-disclosure {
    background: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.floating-nav {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 29px;
    z-index: 999;
    padding: 16px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    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: 24px;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero-immersive {
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.92), rgba(52, 73, 94, 0.88)),
                url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1600') center/cover;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    position: relative;
}

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

.hero-content-center {
    text-align: center;
    color: white;
}

.hero-content-center h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-inline {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: background 0.3s, transform 0.2s;
}

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

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

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

.story-opener {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 28px;
    font-style: italic;
}

.narrow-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.narrow-content h2 {
    font-size: 32px;
    margin: 48px 0 24px;
    color: var(--primary-color);
}

.narrow-content h3 {
    font-size: 24px;
    margin: 36px 0 18px;
    color: var(--text-dark);
}

.narrow-content ul {
    margin: 24px 0 24px 24px;
    line-height: 1.8;
}

.narrow-content li {
    margin-bottom: 12px;
    font-size: 17px;
}

.emphasis-text {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 32px;
}

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

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
}

.split-text {
    flex: 1;
    min-width: 300px;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.split-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.problem-list {
    list-style: none;
    margin: 24px 0;
}

.problem-list li {
    padding: 16px 0 16px 32px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

.problem-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 24px;
    font-weight: bold;
}

.split-visual {
    flex: 1;
    min-width: 300px;
}

.split-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.centered-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.centered-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.insight-text {
    font-size: 20px;
    line-height: 1.7;
}

.product-showcase-offset {
    padding: 80px 24px;
    background: var(--bg-white);
}

.offset-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.showcase-card {
    display: flex;
    gap: 32px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
}

.showcase-card img {
    width: 100%;
    max-width: 380px;
    object-fit: cover;
    flex-shrink: 0;
}

.showcase-content {
    flex: 1;
    padding: 32px;
    min-width: 280px;
}

.showcase-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.showcase-content p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-card {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-card:hover {
    background: #1e4a6f;
}

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

.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

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

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

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

.benefit-deep-dive {
    padding: 80px 24px;
    background: var(--bg-white);
}

.benefit-container {
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--primary-color);
}

.benefit-blocks {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1;
    min-width: 240px;
    padding: 28px;
    background: var(--bg-light);
    border-radius: 6px;
}

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

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

.how-it-works {
    padding: 80px 24px;
    background: var(--bg-light);
}

.steps-flow {
    max-width: 800px;
    margin: 32px auto 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.step-item p {
    font-size: 17px;
    line-height: 1.6;
    padding-top: 8px;
}

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

.comparison-container {
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--primary-color);
}

.comparison-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.compare-old,
.compare-new {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    border-radius: 8px;
}

.compare-old {
    background: #fef5f1;
    border: 2px solid #e0e0e0;
}

.compare-new {
    background: #e8f5e9;
    border: 2px solid var(--success-color);
}

.compare-old h3,
.compare-new h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.compare-old ul,
.compare-new ul {
    list-style: none;
}

.compare-old li,
.compare-new li {
    padding: 12px 0 12px 28px;
    position: relative;
    font-size: 16px;
    line-height: 1.5;
}

.compare-old li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e74c3c;
}

.compare-new li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
}

.product-details {
    padding: 80px 24px;
    background: var(--bg-light);
}

.detail-container {
    max-width: 1000px;
    margin: 0 auto;
}

.detail-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--primary-color);
}

.product-detail-card {
    background: white;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.product-detail-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.product-detail-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.tech-specs {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.tech-specs span {
    background: var(--bg-light);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    color: var(--text-dark);
}

.science-backed {
    padding: 80px 24px;
    background: var(--bg-white);
}

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

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--primary-color);
}

.pricing-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.price-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background: white;
    padding: 32px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

.popular-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--secondary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

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

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

.included-items li {
    padding: 10px 0 10px 24px;
    position: relative;
    font-size: 15px;
}

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

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 24px 0;
    text-align: center;
}

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

.select-service:hover {
    background: #1e4a6f;
}

.order-form-section {
    padding: 60px 24px;
    background: var(--bg-white);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--primary-color);
    text-align: center;
}

.selected-service-display,
.selected-price-display {
    font-size: 17px;
    margin-bottom: 12px;
    text-align: center;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: var(--font-main);
}

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

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

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

.final-cta {
    padding: 100px 24px;
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.95), rgba(52, 73, 94, 0.9)),
                url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1600') center/cover;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 18px 48px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 19px;
    transition: background 0.3s, transform 0.2s;
}

.cta-button-large:hover {
    background: #d35400;
    transform: scale(1.05);
}

.disclaimer-section {
    padding: 40px 24px;
    background: #fffbf0;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    text-align: center;
}

.main-footer {
    background: #2c3e50;
    color: white;
    padding: 60px 24px 24px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

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

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

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    padding: 16px;
    text-align: center;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    z-index: 998;
    display: none;
}

.sticky-cta a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: white;
    padding: 24px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: none;
}

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

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

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

.cookie-btn.reject {
    background: #7f8c8d;
    color: white;
}

.page-hero {
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.9), rgba(52, 73, 94, 0.85)),
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600') center/cover;
    padding: 100px 24px 80px;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 19px;
    opacity: 0.95;
}

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

.about-values {
    margin-top: 48px;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 8px;
}

.about-values h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.team-approach {
    padding: 80px 24px;
    background: var(--bg-light);
}

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

.catalog-container {
    max-width: 1100px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.service-image {
    flex: 1;
    min-width: 300px;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.service-details {
    flex: 1;
    min-width: 300px;
}

.service-details h2 {
    font-size: 30px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-details p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-details h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-details ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-details li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 16px;
    line-height: 1.5;
}

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

.service-pricing {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-cta {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.service-cta:hover {
    background: #1e4a6f;
}

.package-offers {
    padding: 80px 24px;
    background: var(--bg-light);
}

.package-container {
    max-width: 1200px;
    margin: 0 auto;
}

.package-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.package-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 48px;
    color: var(--text-light);
}

.packages-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.package-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background: white;
    padding: 32px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    position: relative;
}

.featured-package {
    border-color: var(--secondary-color);
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--secondary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

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

.package-desc {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.package-includes li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 15px;
}

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

.package-price {
    margin: 24px 0;
    text-align: center;
}

.price-large {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.savings {
    display: block;
    font-size: 14px;
    color: var(--success-color);
    margin-top: 4px;
}

.package-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.package-btn:hover {
    background: #1e4a6f;
}

.why-choose-section {
    padding: 80px 24px;
    background: var(--bg-white);
}

.why-grid {
    max-width: 1000px;
    margin: 32px auto 0;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.why-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

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

.why-item p {
    font-size: 15px;
    line-height: 1.6;
}

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

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

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

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

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-value {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.contact-map-placeholder {
    flex: 1;
    min-width: 300px;
    background: var(--bg-light);
    border-radius: 8px;
    padding: 32px;
}

.map-info h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.map-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}

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

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

.faq-item {
    background: white;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 20px;
}

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

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

.thanks-hero {
    padding: 80px 24px;
    background: var(--bg-light);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    background: white;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

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

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

.order-summary {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 32px;
}

.order-summary h2 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.order-summary p {
    font-size: 16px;
    margin-bottom: 8px;
}

.next-steps {
    margin-bottom: 32px;
    text-align: left;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--primary-color);
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

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

.step p {
    font-size: 15px;
    line-height: 1.5;
    padding-top: 4px;
}

.thanks-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

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

.btn-primary:hover {
    background: #1e4a6f;
}

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

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

.support-info {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
}

.support-info h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.support-info p {
    font-size: 15px;
    margin-bottom: 8px;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-intro {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.legal-content h2 {
    font-size: 26px;
    margin: 40px 0 16px;
    color: var(--primary-color);
}

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

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

.legal-content ul {
    margin: 16px 0 16px 24px;
    line-height: 1.7;
}

.legal-content li {
    margin-bottom: 8px;
    font-size: 16px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-date {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

.cookies-table th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

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

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

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

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

    .showcase-card {
        flex-direction: column;
    }

    .showcase-card img {
        max-width: 100%;
    }

    .pricing-cards,
    .packages-grid {
        flex-direction: column;
        align-items: center;
    }

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

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

    .contact-container {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        justify-content: center;
    }
}