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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --text-color: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    background: var(--bg-white);
}

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

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

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: var(--bg-light);
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--secondary-color);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

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

.btn-hero:hover {
    background: var(--primary-dark);
}

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

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--secondary-color);
    line-height: 1.3;
}

.intro-section p {
    font-size: 19px;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

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

.split-content {
    flex: 1;
}

.split-content h3 {
    font-size: 32px;
    margin-bottom: 28px;
    color: var(--secondary-color);
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.problem-list {
    list-style: none;
}

.problem-list li {
    padding: 14px 0 14px 32px;
    position: relative;
    font-size: 18px;
    color: var(--text-color);
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

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

.insight-header h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.insight-grid {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.insight-card {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.insight-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.insight-card p {
    font-size: 17px;
    line-height: 1.5;
    opacity: 0.9;
}

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

.trust-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

.process-steps {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.step {
    flex: 1;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
    opacity: 0.3;
}

.step h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

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

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

.testimonials-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

.testimonials-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

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

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

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 19px;
    color: var(--text-light);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

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

.service-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: var(--secondary-color);
}

.service-card > p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 15px;
}

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

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 15px;
    color: var(--text-color);
}

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

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

.service-price span {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light);
}

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

.btn-service:hover {
    background: var(--primary-dark);
}

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

.benefits-list {
    list-style: none;
    margin-top: 24px;
}

.benefits-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
    color: var(--text-color);
}

.benefits-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

.cta-form-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.cta-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    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);
}

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

.btn-submit:hover {
    background: var(--primary-dark);
}

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

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

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

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

.btn-final:hover {
    transform: scale(1.05);
}

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

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

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

.sticky-btn {
    display: block;
    padding: 16px 28px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: white;
    padding: 24px;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.15);
    z-index: 200;
    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 {
    margin: 0;
    font-size: 15px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-primary {
    padding: 10px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-secondary {
    padding: 10px 24px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.3s;
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
}

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

.page-hero h1 {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.hero-lead {
    font-size: 20px;
    color: var(--text-light);
}

.about-intro {
    padding: 100px 20px;
}

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

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 40px;
    background: white;
    border-radius: 12px;
}

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

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

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

.team-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.section-intro {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.why-us-section {
    padding: 100px 20px;
    background: var(--secondary-color);
    color: white;
}

.why-us-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
}

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

.why-item {
    flex: 1;
    text-align: center;
}

.why-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.why-item p {
    font-size: 16px;
    opacity: 0.9;
}

.approach-section {
    padding: 100px 20px;
}

.approach-list {
    list-style: none;
    margin-top: 20px;
}

.approach-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
}

.approach-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
}

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

.mission-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--secondary-color);
    text-align: center;
}

.mission-text {
    font-size: 20px;
    color: var(--text-color);
    line-height: 1.8;
    text-align: center;
}

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

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

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

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

.intro-text {
    font-size: 19px;
    color: var(--text-light);
    line-height: 1.7;
    text-align: center;
}

.services-detailed {
    padding: 60px 20px 100px;
    background: var(--bg-light);
}

.service-detail {
    max-width: 1000px;
    margin: 0 auto 40px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.featured-service {
    border: 3px solid var(--primary-color);
    position: relative;
}

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

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

.service-detail-header h2 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.service-tagline {
    font-size: 17px;
    color: var(--text-light);
}

.service-detail-price {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-color);
    white-space: nowrap;
}

.service-detail-price span {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-light);
}

.service-detail-body {
    display: flex;
    padding: 40px;
    gap: 40px;
}

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

.service-detail-content h3 {
    font-size: 22px;
    margin: 30px 0 16px;
    color: var(--secondary-color);
}

.service-detail-content h3:first-child {
    margin-top: 0;
}

.service-detail-content ul {
    list-style: none;
}

.service-detail-content ul li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
}

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

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

.service-detail-cta {
    display: flex;
    align-items: flex-start;
}

.btn-service-detail {
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.btn-service-detail:hover {
    background: var(--primary-dark);
}

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

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

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-row {
    display: flex;
}

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

.comparison-cell {
    flex: 1;
    padding: 16px 20px;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-row:last-child .comparison-cell {
    border-bottom: none;
}

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

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

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.services-cta p {
    font-size: 18px;
    margin-bottom: 36px;
}

.contact-content {
    padding: 80px 20px;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

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

.contact-info > p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 40px;
}

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

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

.contact-item p {
    color: var(--text-color);
    line-height: 1.6;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

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

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

.contact-additional h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.contact-additional p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-form-container {
    flex: 1;
    background: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
}

.contact-form-container h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.contact-form {
    max-width: 100%;
}

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

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

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

.faq-simple-item {
    margin-bottom: 35px;
}

.faq-simple-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.faq-simple-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

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

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

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

.thanks-info {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 50px;
}

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

.thanks-steps {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.thanks-step {
    flex: 1;
    max-width: 250px;
}

.thanks-step strong {
    display: block;
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.thanks-service-info {
    background: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

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

.thanks-additional {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-additional h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.thanks-additional p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-additional a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.legal-page {
    padding: 80px 20px 100px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.legal-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.legal-content h2:first-child {
    margin-top: 0;
}

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

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

.legal-content ul {
    margin: 20px 0 20px 25px;
    line-height: 1.8;
}

.legal-content ul li {
    margin-bottom: 10px;
    color: var(--text-color);
}

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

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

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

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

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

.cookie-table th {
    font-weight: 600;
    color: var(--secondary-color);
}

.cookie-table td {
    color: var(--text-color);
}

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

    .hero-left {
        padding: 60px 30px;
    }

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

    .split-container {
        flex-direction: column;
        gap: 50px;
    }

    .split-container.reverse {
        flex-direction: column;
    }

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

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

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

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

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

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

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-detail-body {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        gap: 0;
    }

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

    .nav-menu li {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .section-header h2 {
        font-size: 32px;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

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

    .main-form {
        padding: 30px;
    }

    .contact-form-container {
        padding: 30px;
    }
}