* {
    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: #2ecc71;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.nav-floating {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

.nav-menu li a:hover {
    color: var(--secondary-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary-color);
}

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

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 15px;
        padding-top: 15px;
    }

    .nav-menu.active {
        display: flex;
    }
}

.hero-visual {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background-color: #34495e;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(52, 73, 94, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-lead {
    font-size: 24px;
    font-weight: 300;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .hero-visual {
        height: 60vh;
    }

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

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

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

.story-container {
    max-width: 720px;
    margin: 0 auto;
}

.story-hook {
    font-size: 26px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 300;
}

.story-container p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.visual-block-offset {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

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

.offset-text {
    flex: 1;
    padding-right: 40px;
}

.offset-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.offset-image {
    flex: 1;
    background-color: #95a5a6;
}

.offset-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 968px) {
    .offset-layout {
        flex-direction: column;
    }

    .offset-text {
        padding-right: 0;
    }
}

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

.insight-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.insight-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-left: 5px solid var(--secondary-color);
}

.insight-card h3 {
    font-size: 32px;
    margin-bottom: 25px;
}

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

.citation {
    color: #f39c12;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.citation:hover {
    color: #e67e22;
}

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

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

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

.signal-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.signal-item {
    flex: 1;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.signal-number {
    display: block;
    font-size: 64px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

@media (max-width: 968px) {
    .signal-grid {
        flex-direction: column;
    }
}

.trust-builder {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.trust-image {
    flex: 1;
    background-color: #95a5a6;
}

.trust-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 968px) {
    .trust-content {
        flex-direction: column;
    }
}

.testimonial-inline {
    padding: 80px 20px;
    background-color: #34495e;
    color: white;
}

.testimonial-wrap {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.testimonial {
    flex: 1;
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--secondary-color);
}

.testimonial cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 16px;
    color: #ecf0f1;
}

@media (max-width: 768px) {
    .testimonial-wrap {
        flex-direction: column;
    }
}

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

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

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

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

.benefit-card {
    flex: 1;
    background-color: var(--bg-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.benefit-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #95a5a6;
}

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

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

@media (max-width: 968px) {
    .benefit-cards {
        flex-direction: column;
    }
}

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

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

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

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

.ingredient-item {
    padding: 30px;
    background-color: var(--bg-white);
    border-left: 5px solid var(--accent-color);
}

.ingredient-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

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

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

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

.pricing-card {
    flex: 1;
    max-width: 350px;
    padding: 40px 30px;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
}

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

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-light);
    font-size: 16px;
    color: var(--text-light);
}

.pricing-features li:before {
    content: "✓ ";
    color: var(--success-color);
    font-weight: 700;
    margin-right: 10px;
}

.pricing-amount {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 25px;
}

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

.btn-select:hover {
    background-color: #c0392b;
}

@media (max-width: 968px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

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

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.order-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

.btn-submit {
    padding: 15px;
    background-color: var(--success-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #27ae60;
}

.disclaimer-section {
    padding: 60px 20px;
    background-color: #fffbf0;
    border-top: 2px solid #f39c12;
    border-bottom: 2px solid #f39c12;
}

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

.disclaimer-text {
    font-size: 15px;
    line-height: 1.7;
    color: #7f8c8d;
    text-align: center;
    font-style: italic;
}

.references-section {
    padding: 60px 20px;
    background-color: var(--bg-white);
}

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

.references-container h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.references-list {
    list-style-position: inside;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.references-list a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.references-list a:hover {
    color: var(--secondary-color);
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

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

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #ecf0f1;
}

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

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

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #bdc3c7;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
    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;
    gap: 30px;
}

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

.cookie-content a {
    color: #f39c12;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-cookie-accept:hover {
    background-color: #27ae60;
}

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

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

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
}

.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
    background-color: #34495e;
}

.page-header {
    padding: 80px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.lead-text {
    font-size: 20px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

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

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

.about-text h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

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

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

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

.timeline-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.timeline-year {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 150px;
}

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

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

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }

    .timeline-year {
        min-width: auto;
    }
}

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

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

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

.value-card {
    flex: 1;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

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

@media (max-width: 968px) {
    .values-grid {
        flex-direction: column;
    }
}

.team-image {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.team-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    background-color: #95a5a6;
}

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

.approach-section h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.services-showcase {
    padding: 60px 20px;
    background-color: var(--bg-white);
}

.service-detailed {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-image {
    flex: 1;
    background-color: #95a5a6;
}

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

.service-content {
    flex: 1;
}

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

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

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

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

.service-includes li {
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--bg-light);
}

.service-includes li:before {
    content: "✓ ";
    color: var(--success-color);
    font-weight: 700;
    margin-right: 10px;
}

.btn-service {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #c0392b;
}

@media (max-width: 968px) {
    .service-detailed,
    .service-detailed.reverse {
        flex-direction: column;
    }
}

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

.service-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

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

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #c0392b;
}

.contact-header {
    padding: 80px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-header h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

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

.contact-info {
    flex: 1;
}

.contact-block {
    margin-bottom: 50px;
}

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

.contact-address {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-email {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

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

.opening-hours {
    list-style: none;
}

.opening-hours li {
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-light);
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.opening-hours li span {
    font-weight: 600;
    color: var(--text-dark);
}

.contact-image {
    flex: 1;
    background-color: #95a5a6;
}

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

@media (max-width: 968px) {
    .contact-layout {
        flex-direction: column;
    }
}

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

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

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

.faq-item {
    padding: 30px;
    background-color: var(--bg-white);
    border-left: 4px solid var(--accent-color);
}

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

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

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

.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: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-lead {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-details {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.thanks-details .content-container {
    display: flex;
    gap: 60px;
}

.thanks-info {
    flex: 2;
}

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

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

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

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

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

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

.thanks-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.thanks-card {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

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

.contact-email-display {
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 15px;
}

@media (max-width: 968px) {
    .thanks-details .content-container {
        flex-direction: column;
    }
}

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

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

.next-actions {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.action-card {
    flex: 1;
    padding: 40px;
    background-color: var(--bg-white);
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

@media (max-width: 768px) {
    .next-actions {
        flex-direction: column;
    }
}

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

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

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

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

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

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

.legal-content h4 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.legal-content ul,
.legal-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: var(--text-light);
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
}

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