* {
    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.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

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

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

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

.main-header {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo a {
    color: var(--primary-color);
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.hero-section {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.95), rgba(231, 76, 60, 0.85)), url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1600') center/cover;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

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

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-hero {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
    color: white;
}

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

.story-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    line-height: 1.3;
}

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

.emphasis-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 20px 0;
}

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

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

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.text-block p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 1.1rem;
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.highlight-box {
    background: var(--secondary-color);
    color: white;
    padding: 20px 25px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 25px;
}

.image-block {
    flex: 1;
}

.image-block img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.insight-reveal h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.insight-reveal p {
    font-size: 1.15rem;
    margin-bottom: 20px;
}

.callout-text {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 20px;
    margin: 30px 0;
    font-size: 1.15rem;
    font-style: italic;
}

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

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

.process-flow {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 35px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.testimonial {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 5px solid var(--accent-color);
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial cite {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

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

.benefit-reveal h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.benefit-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.benefit-card p {
    font-size: 1.05rem;
    line-height: 1.6;
}

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

.cta-box {
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
    color: white;
}

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

.deep-dive h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.breakdown-list {
    margin: 25px 0;
    padding-left: 25px;
}

.breakdown-list li {
    font-size: 1.1rem;
    padding: 8px 0;
}

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

.social-proof h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.stats-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-dark);
}

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

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.services-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

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

.service-card p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-features {
    list-style: none;
    margin: 20px 0;
    flex-grow: 1;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1rem;
}

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

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 25px 0 20px;
}

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

.btn-select-service:hover {
    background: var(--secondary-color);
}

.urgency-element {
    padding: 70px 20px;
    background: #fff3cd;
}

.urgency-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border-left: 6px solid #ffc107;
}

.urgency-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.urgency-calc {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 25px 0;
}

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

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

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

.guarantee-item {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 35px;
    border-radius: 10px;
    border-top: 5px solid var(--success-color);
}

.guarantee-item h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

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

.contact-form {
    background: white;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: normal;
}

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

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

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

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

.sticky-btn {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    transition: transform 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    color: white;
}

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

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

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

.footer-col p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 25px;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

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

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

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

.btn-cookie-accept:hover,
.btn-cookie-reject:hover {
    opacity: 0.85;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-story,
.mission-section,
.values-section,
.numbers-section,
.team-approach,
.services-detailed,
.contact-section,
.comparison-section,
.faq-contact,
.cta-about,
.cta-services,
.cta-contact,
.thanks-section,
.thanks-testimonial {
    padding: 80px 20px;
}

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

.about-story h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

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

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 35px;
    border-radius: 10px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.numbers-section {
    background: var(--bg-light);
}

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

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

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

.big-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

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

.cta-about,
.cta-services,
.cta-contact {
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-about h2,
.cta-services h2,
.cta-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

.service-detail-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 40px;
    overflow: hidden;
}

.service-detail-card.featured-service {
    border-color: var(--secondary-color);
    border-width: 3px;
    position: relative;
}

.service-header {
    background: var(--bg-light);
    padding: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-body {
    padding: 35px;
}

.service-description {
    font-size: 1.15rem;
    margin-bottom: 25px;
}

.service-body h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-list,
.process-list,
.example-list {
    margin: 15px 0;
    padding-left: 25px;
}

.feature-list li,
.example-list li {
    margin-bottom: 10px;
}

.process-list {
    list-style: decimal;
}

.process-list li {
    margin-bottom: 15px;
    padding-left: 10px;
}

.service-cta {
    margin-top: 30px;
}

.bonus-info {
    background: #d4edda;
    border-left: 4px solid var(--success-color);
    padding: 15px;
    margin-top: 20px;
    border-radius: 4px;
}

.comparison-section {
    background: var(--bg-light);
}

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

.comparison-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.comparison-header,
.comparison-row,
.comparison-total {
    display: flex;
    padding: 20px;
}

.comparison-header {
    background: var(--primary-color);
    color: white;
    font-weight: 700;
}

.comparison-row {
    border-bottom: 1px solid var(--border-color);
}

.comparison-total {
    background: var(--bg-light);
    font-weight: 700;
}

.comparison-col {
    flex: 1;
    padding: 0 15px;
}

.savings {
    color: var(--success-color);
    font-weight: 700;
}

.comparison-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

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

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info,
.contact-map {
    flex: 1;
    min-width: 300px;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 8px;
}

.map-placeholder {
    margin: 25px 0;
    border-radius: 10px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.map-note {
    font-size: 0.95rem;
    color: var(--text-light);
}

.faq-contact {
    background: var(--bg-light);
}

.thanks-section {
    background: var(--bg-white);
}

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

.checkmark-circle {
    width: 100px;
    height: 100px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.checkmark {
    width: 40px;
    height: 70px;
    border: solid white;
    border-width: 0 8px 8px 0;
    transform: rotate(45deg);
}

.thanks-box h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.service-selected {
    font-size: 1.1rem;
}

.thanks-box h2 {
    font-size: 2rem;
    margin: 40px 0 30px;
    color: var(--primary-color);
}

.next-steps {
    display: flex;
    gap: 25px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.step-box {
    flex: 1;
    min-width: 200px;
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.step-num {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.thanks-tips {
    background: #fff3cd;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: left;
}

.thanks-tips h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.thanks-tips ul {
    padding-left: 25px;
}

.thanks-tips li {
    margin-bottom: 10px;
}

.thanks-contact {
    margin: 30px 0;
}

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

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    transition: opacity 0.3s;
}

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

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

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.85;
}

.thanks-testimonial {
    background: var(--bg-light);
}

.testimonial-large {
    background: white;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial-large p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-large cite {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

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

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

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

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

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-page h4 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.legal-page p,
.legal-page li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-page ul,
.legal-page ol {
    padding-left: 30px;
    margin: 20px 0;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    border: 1px solid var(--border-color);
}

.legal-table th,
.legal-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.legal-table th {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--primary-color);
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

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

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .process-flow {
        flex-direction: column;
    }

    .stats-row {
        flex-direction: column;
    }

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

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

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

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

    .comparison-header,
    .comparison-row,
    .comparison-total {
        flex-direction: column;
    }

    .comparison-col {
        padding: 8px 15px;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
    }

    .next-steps {
        flex-direction: column;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .sticky-cta {
        left: 20px;
        right: 20px;
    }

    .sticky-btn {
        width: 100%;
        text-align: center;
    }

    .legal-table {
        font-size: 0.9rem;
    }

    .legal-table th,
    .legal-table td {
        padding: 10px;
    }
}
