:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
}

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

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-color);
    background: var(--bg-white);
}

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

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

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

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

.main-nav {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.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: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

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

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

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

.hero-text {
    max-width: 560px;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-visual {
    flex: 1;
    display: flex;
}

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

.cta-hero {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

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

.insight-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin-top: 32px;
    border-radius: 4px;
}

.insight-label {
    font-weight: 700;
    color: #856404;
    display: block;
    margin-bottom: 8px;
}

.insight-box p {
    color: #856404;
    margin: 0;
}

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

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

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

.trust-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.trust-card h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

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

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

.testimonial-quote {
    flex: 1.2;
}

.testimonial-quote p {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

.testimonial-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

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

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

.offset-content {
    flex: 1.3;
}

.offset-content h2 {
    font-size: 2.25rem;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.benefits-list {
    list-style: none;
    margin-bottom: 32px;
}

.benefits-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 4px;
}

.offset-image {
    flex: 1;
}

.offset-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.cta-inline {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.how-it-works {
    background: var(--bg-light);
    padding: 80px 20px;
}

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

.process-steps {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 16px;
}

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

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

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

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

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.services-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

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

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

.service-header {
    margin-bottom: 24px;
}

.service-header h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.service-type {
    color: var(--text-light);
    font-size: 0.9375rem;
}

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

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

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

.service-price {
    margin-top: auto;
    padding: 24px 0;
    border-top: 2px solid var(--border-color);
    text-align: center;
}

.price-amount {
    display: block;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.price-note {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-light);
}

.btn-select-service {
    width: 100%;
    margin-top: 16px;
    padding: 14px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

.form-intro h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.form-intro p {
    font-size: 1.0625rem;
    color: var(--text-light);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    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(--secondary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.urgency-section {
    background: var(--accent-color);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

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

.urgency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.urgency-content p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-urgency {
    display: inline-block;
    background: white;
    color: var(--accent-color);
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.cta-urgency:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

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

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

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

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

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.15);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.sticky-cta.visible {
    transform: translateY(0);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 16px 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: 32px;
}

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

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

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

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

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

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

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

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

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

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.about-story,
.approach-section {
    padding: 80px 20px;
}

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

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

.value-item {
    flex: 1;
    min-width: 260px;
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

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

.team-section {
    padding: 80px 20px;
}

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

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

.team-member {
    flex: 1;
    background: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
}

.member-role {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9375rem;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

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

.stats-layout {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.stat-value {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.stat-description {
    display: block;
    font-size: 1.0625rem;
    color: var(--text-light);
}

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

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-large {
    display: inline-block;
    background: white;
    color: var(--secondary-color);
    padding: 18px 48px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.cta-large:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.services-detailed {
    padding: 60px 20px;
}

.service-detail-card {
    max-width: 900px;
    margin: 0 auto 48px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

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

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 1;
}

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

.service-title-group h2 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.service-subtitle {
    color: var(--text-light);
    font-size: 1.0625rem;
}

.service-price-large {
    text-align: right;
}

.price-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-label {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-light);
}

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

.service-detail-body h3 {
    font-size: 1.375rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.detailed-features {
    list-style: none;
    margin-bottom: 32px;
}

.detailed-features li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

.detailed-features li:last-child {
    border-bottom: none;
}

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

.service-note {
    background: #e3f2fd;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    color: #1565c0;
    font-size: 0.9375rem;
}

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

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border-collapse: collapse;
}

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

.comparison-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background: var(--bg-light);
}

.faq-section {
    padding: 80px 20px;
}

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

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 20px;
}

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

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

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

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

.contact-info {
    flex: 1;
}

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

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

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

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

.contact-visual {
    flex: 1;
}

.contact-visual img {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    margin-bottom: 32px;
}

.contact-cta-box {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
}

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

.contact-cta-box p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.btn-cta {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

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

.map-section h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.map-section p {
    font-size: 1.0625rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.map-placeholder {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 100px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    font-size: 1.5rem;
    color: var(--text-light);
}

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

.contact-extra h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.info-card {
    flex: 1;
    min-width: 260px;
    background: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.info-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.info-card a {
    color: var(--secondary-color);
    font-weight: 600;
}

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

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

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

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

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

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.legal-content ul {
    padding-left: 24px;
}

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

.legal-content strong {
    color: var(--text-color);
}

.thanks-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    padding: 80px 20px;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.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: 3rem;
    margin: 0 auto 32px;
}

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

.thanks-message {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 32px;
}

.thanks-details {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.thanks-details h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.thanks-details p {
    margin-bottom: 8px;
    color: var(--text-color);
}

.thanks-note {
    font-size: 0.9375rem;
    color: var(--text-light);
    font-style: italic;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.thanks-next-steps {
    padding: 80px 20px;
}

.thanks-next-steps h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.step-card {
    flex: 1;
    text-align: center;
    padding: 32px;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

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

.thanks-additional h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.additional-content {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.additional-card {
    flex: 1;
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.additional-card h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.additional-card p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.link-arrow {
    color: var(--secondary-color);
    font-weight: 600;
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: white;
        padding: 20px;
        box-shadow: var(--shadow-md);
        transition: left 0.3s ease;
        gap: 0;
    }

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

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

    .nav-toggle {
        display: block;
    }

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

    .hero-text h1 {
        font-size: 2.25rem;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        padding: 60px 20px;
        gap: 40px;
    }

    .testimonial-split {
        flex-direction: column;
        gap: 40px;
    }

    .testimonial-quote p {
        font-size: 1.25rem;
    }

    .offset-layout {
        flex-direction: column;
        gap: 40px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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

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

    .service-price-large {
        text-align: center;
    }

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

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

    .contact-layout {
        flex-direction: column;
    }

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

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

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

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

    .section-title {
        font-size: 1.875rem;
    }

    .split-content h2 {
        font-size: 1.75rem;
    }

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

    .thanks-container {
        padding: 40px 24px;
    }

    .thanks-container h1 {
        font-size: 2rem;
    }
}