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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #1a3a52;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --success-color: #27ae60;
    --border-color: #dee2e6;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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);
    overflow-x: hidden;
}

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

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

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

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

.nav-links {
    display: flex;
    gap: 35px;
}

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

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

.nav-cta {
    background: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    background: rgba(44, 95, 141, 0.85);
    padding: 80px 60px;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 20px;
}

.hero-overlay h1 {
    font-size: 58px;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800;
}

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

.cta-hero {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.cta-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

.story-content {
    line-height: 1.9;
}

.story-content h2 {
    font-size: 42px;
    margin-bottom: 35px;
    color: var(--primary-color);
    font-weight: 700;
}

.story-content p {
    font-size: 19px;
    margin-bottom: 22px;
    color: var(--text-dark);
}

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

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

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

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

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

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

.problem-list li:before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 20px;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.split-content.reverse {
    flex-direction: row-reverse;
}

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

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

.insight-reveal p {
    font-size: 19px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.highlight-quote {
    background: #fff3cd;
    border-left: 5px solid var(--accent-color);
    padding: 30px;
    margin: 40px 0;
    font-size: 22px;
    font-style: italic;
    line-height: 1.7;
    border-radius: 6px;
}

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

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.trust-building .section-title {
    color: white;
}

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

.feature-card {
    flex: 1 1 calc(33.333% - 20px);
    background: rgba(255, 255, 255, 0.95);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

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

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

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

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

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

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-size: 17px;
}

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

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

.visual-comparison h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
}

.comparison-split {
    display: flex;
    gap: 40px;
}

.comparison-side {
    flex: 1;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.comparison-label {
    padding: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    color: white;
}

.comparison-label.red {
    background: #e74c3c;
}

.comparison-label.green {
    background: #27ae60;
}

.comparison-side ul {
    list-style: none;
    padding: 25px;
}

.comparison-side li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
}

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

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

.benefits-reveal p {
    font-size: 19px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.calculation-box {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-top: 40px;
}

.calculation-box h4 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.calc-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 17px;
}

.calc-row strong {
    color: var(--primary-color);
    font-size: 19px;
}

.calc-row.highlight-row {
    background: #fff3cd;
    padding: 20px 15px;
    margin-top: 15px;
    border-radius: 8px;
    border: none;
    font-size: 20px;
}

.calc-row.highlight-row strong {
    color: var(--accent-color);
    font-size: 24px;
    font-weight: 800;
}

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

.services-pricing h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
}

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

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

.price-card {
    flex: 1 1 calc(33.333% - 20px);
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 35px;
    transition: all 0.3s;
    position: relative;
}

.price-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

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

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

.price-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.price-card > p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    min-height: 45px;
}

.price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
}

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

.price-features li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 15px;
    line-height: 1.5;
}

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

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

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

.urgency-block {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

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

.urgency-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.urgency-content p {
    font-size: 19px;
    margin-bottom: 15px;
}

.urgency-note {
    font-size: 22px;
    font-weight: 700;
    margin-top: 25px;
}

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

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

.form-conversion > .container > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: var(--text-light);
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

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

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

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

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

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

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

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

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

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

.final-push h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.final-push p {
    font-size: 19px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-final {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 18px 45px;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.cta-final:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

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

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

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 58, 82, 0.98);
    color: white;
    padding: 25px 20px;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

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

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

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.cookie-btn.accept:hover {
    background: #229954;
}

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

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

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

.sticky-cta a {
    display: block;
    background: var(--accent-color);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(230, 126, 34, 0.4);
    transition: all 0.3s;
}

.sticky-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(230, 126, 34, 0.5);
}

.page-header {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

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

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

.about-story {
    padding: 90px 20px;
    background: white;
}

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

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

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

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
}

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

.value-card {
    flex: 1 1 calc(33.333% - 20px);
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.value-card p {
    font-size: 16px;
    line-height: 1.7;
}

.team-section {
    padding: 90px 20px;
    background: white;
}

.team-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
}

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

.team-member {
    flex: 1;
    text-align: center;
}

.member-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0 auto 20px;
}

.team-member h4 {
    font-size: 22px;
    margin-bottom: 8px;
}

.team-member .role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

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

.numbers-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
}

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

.stat-box {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.certifications {
    padding: 90px 20px;
    background: white;
}

.certifications h2 {
    font-size: 40px;
    margin-bottom: 25px;
    text-align: center;
}

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

.cert-list {
    list-style: none;
    margin-top: 30px;
}

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

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

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 19px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.services-detail {
    padding: 60px 20px;
    background: white;
}

.service-block {
    margin-bottom: 70px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
}

.service-header h2 {
    font-size: 34px;
    color: var(--text-dark);
}

.price-large {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-color);
}

.service-content-grid {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.service-description {
    flex: 1.2;
}

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

.service-description ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-description ul li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

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

.service-note {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 6px;
    font-size: 15px;
    margin-bottom: 25px;
    font-style: italic;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.process-timeline {
    padding: 90px 20px;
    background: var(--bg-light);
}

.process-timeline h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.timeline-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.timeline-item p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.timeline-duration {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.contact-content {
    padding: 60px 20px;
    background: white;
}

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

.contact-info {
    flex: 1;
}

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

.info-block {
    margin-bottom: 35px;
}

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

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.info-block a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-block a:hover {
    text-decoration: underline;
}

.info-block .note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 10px;
}

.contact-map {
    flex: 1;
}

.contact-map h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.map-placeholder {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

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

.faq-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

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

.thanks-container {
    padding: 140px 20px 100px;
    background: var(--bg-light);
    min-height: 80vh;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--success-color);
}

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

.thanks-info {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.next-steps {
    list-style: none;
    counter-reset: step;
}

.next-steps li {
    counter-increment: step;
    padding: 15px 0 15px 45px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.next-steps li:before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 12px;
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.thanks-service-info {
    margin-bottom: 35px;
}

.thanks-service-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.selected-service {
    background: #e8f5e9;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 18px;
    color: var(--success-color);
    font-weight: 600;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

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

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

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

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

.thanks-contact {
    font-size: 16px;
    color: var(--text-light);
}

.thanks-contact a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.thanks-contact a:hover {
    text-decoration: underline;
}

.legal-content {
    padding: 60px 20px 90px;
    background: white;
}

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

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

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

.legal-content ul,
.legal-content ol {
    margin: 15px 0 20px 25px;
}

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

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

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

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

.gdpr-table th,
.cookies-table th {
    background: var(--primary-color);
    color: white;
    padding: 14px;
    text-align: left;
    font-weight: 600;
}

.gdpr-table td,
.cookies-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border-color);
}

.gdpr-table tr:hover,
.cookies-table tr:hover {
    background: var(--bg-light);
}

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        text-align: center;
    }

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

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

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

    .features-grid,
    .pricing-cards,
    .values-grid,
    .team-grid,
    .stats-grid {
        flex-direction: column;
    }

    .feature-card,
    .price-card,
    .value-card {
        flex: 1 1 100%;
    }

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

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

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

    .service-content-grid {
        flex-direction: column;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }

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