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

:root {
    --primary-color: #2c5aa0;
    --primary-dark: #1e3f73;
    --secondary-color: #f59e0b;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
}

html {
    scroll-behavior: smooth;
}

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

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

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

.navigation {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px 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;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: lowercase;
    letter-spacing: -0.5px;
}

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

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

.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;
    padding: 5px;
}

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

.hero-split {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
}

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

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.hero-visual {
    flex: 1;
    min-height: 400px;
    background: var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

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

.insight-section h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.insight-section p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
}

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

.case-split.left {
    background: var(--bg-light);
}

.case-split.right {
    flex-direction: row-reverse;
    background: var(--bg-white);
}

.case-visual {
    flex: 1;
    min-height: 380px;
    background: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.case-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-content {
    flex: 1;
}

.case-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.case-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.problem-amplify {
    padding: 100px 0;
    background: var(--text-dark);
    color: white;
}

.problem-amplify h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.problem-card h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.problem-card p {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

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

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

.approach-section > p {
    font-size: 20px;
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 60px;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 60px;
}

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

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.2;
    flex-shrink: 0;
    min-width: 80px;
}

.step h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
}

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

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

.services-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

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

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 24px;
    flex-grow: 1;
}

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

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

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

.services-cta {
    text-align: center;
    margin-top: 48px;
}

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

.testimonial {
    margin-bottom: 48px;
    padding: 40px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

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

.testimonial cite {
    font-size: 16px;
    color: var(--text-medium);
    font-style: normal;
    font-weight: 600;
}

.trust-section {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

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

.trust-intro {
    font-size: 19px;
    color: var(--text-medium);
    margin-bottom: 60px;
}

.trust-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.stat-label {
    font-size: 16px;
    color: var(--text-medium);
    max-width: 180px;
}

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

.form-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
}

.form-section > div > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 48px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    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 ease;
}

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

.form-group textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

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

.checkbox-label span {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.5;
}

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

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

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.9);
}

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

.final-cta .cta-primary:hover {
    background: var(--bg-light);
}

.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.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;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    z-index: 9999;
    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: 24px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    color: var(--text-medium);
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background: var(--border-color);
    color: var(--text-dark);
}

.btn-reject:hover {
    background: #d1d5db;
}

.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-hero p {
    font-size: 20px;
    color: var(--text-medium);
}

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

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

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.story-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.story-visual {
    flex: 1;
    min-height: 400px;
    background: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

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

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

.value-item p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
}

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

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

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

.team-member {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.member-photo {
    width: 100%;
    height: 280px;
    background: var(--border-color);
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

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

.approach-detail {
    padding: 100px 0;
    background: var(--bg-light);
}

.approach-detail h2 {
    font-size: 38px;
    margin-bottom: 24px;
    text-align: center;
}

.approach-detail > p {
    font-size: 19px;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 60px;
}

.approach-blocks {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.approach-block {
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.approach-block h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.approach-block p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
}

.numbers-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: white;
}

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

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

.number-item {
    text-align: center;
    min-width: 180px;
}

.number-item .number {
    font-size: 56px;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.number-item p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
}

.cta-about {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

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

.cta-about p {
    font-size: 19px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.services-full {
    padding: 80px 0;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail.left {
    background: var(--bg-light);
}

.service-detail.right {
    flex-direction: row-reverse;
    background: var(--bg-white);
}

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.service-lead {
    font-size: 19px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-includes {
    margin-bottom: 32px;
}

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

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
}

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

.service-pricing {
    background: white;
    padding: 24px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
}

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

.price-note {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-detail-visual {
    flex: 1;
    min-height: 400px;
    background: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.packages-section > div > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 60px;
}

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

.package-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.package-card.featured {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.package-card h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.package-desc {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.package-card.featured .package-desc {
    color: rgba(255,255,255,0.8);
}

.package-includes {
    flex-grow: 1;
    margin-bottom: 32px;
}

.package-includes ul {
    list-style: none;
    padding: 0;
}

.package-includes ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
}

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

.package-card.featured .package-includes ul li:before {
    color: var(--secondary-color);
}

.package-price {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.package-save {
    font-size: 14px;
    color: var(--success-color);
    margin-bottom: 20px;
}

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

.package-card .cta-service {
    background: var(--primary-color);
}

.package-card.featured .cta-service {
    background: white;
    color: var(--primary-color);
}

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

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

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

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

.step-number {
    width: 56px;
    height: 56px;
    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-step h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

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

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

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

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

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

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

.cta-services {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

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

.cta-services p {
    font-size: 19px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

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

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

.contact-form-wrapper {
    flex: 2;
}

.contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 32px;
}

.contact-info-wrapper {
    flex: 1;
}

.contact-info-wrapper h2 {
    font-size: 32px;
    margin-bottom: 32px;
}

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

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

.info-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

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

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

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

.contact-note {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
}

.contact-note h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.contact-note p:last-child {
    margin-bottom: 0;
}

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

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

.thanks-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
}

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

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

.thanks-lead {
    font-size: 22px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.thanks-details {
    margin-bottom: 48px;
}

.selected-service {
    font-size: 18px;
    color: var(--text-medium);
}

.selected-service strong {
    color: var(--primary-color);
}

.thanks-next {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next h2 {
    font-size: 32px;
    margin-bottom: 32px;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.next-step p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-medium);
    margin: 0;
}

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

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

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

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

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.legal-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 48px;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
}

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

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

.legal-content ul li,
.legal-content ol li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 8px;
}

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

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

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

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
    font-size: 14px;
}

.cookies-table th {
    font-weight: 600;
    color: var(--text-dark);
}

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

@media (max-width: 968px) {
    .hero-content,
    .case-split,
    .story-split,
    .service-detail,
    .contact-split {
        flex-direction: column;
    }

    .case-split.right,
    .service-detail.right {
        flex-direction: column;
    }

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

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

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

    .nav-menu li {
        margin: 16px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .problem-grid,
    .services-grid,
    .packages-grid,
    .trust-stats,
    .numbers-grid {
        flex-direction: column;
    }

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

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

    .step {
        flex-direction: column;
    }

    .step-number {
        min-width: auto;
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 18px;
    }

    h2 {
        font-size: 32px;
    }

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