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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #64748b;
    --accent-color: #f59e0b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --error-color: #ef4444;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 9999;
    box-shadow: var(--shadow-xl);
    display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hero-card {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1600&h=500&fit=crop') center/cover;
    opacity: 0.15;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.intro-cards {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

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

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

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

.services-showcase h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 30px;
}

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

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

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

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

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

.why-us-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.split-text,
.split-image {
    flex: 1;
    min-width: 300px;
}

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

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

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: var(--text-dark);
}

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

.btn-inline-cta {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-inline-cta:hover {
    background: var(--primary-dark);
    transform: translateX(5px);
}

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

.process-section {
    padding: 80px 0;
}

.process-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.process-card {
    flex: 1;
    min-width: 240px;
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

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

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

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

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.order-section {
    padding: 80px 0;
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--text-dark);
    text-align: center;
}

.form-card > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.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: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    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);
}

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

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

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

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

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

.cta-banner h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn-cta-white {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

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

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

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

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

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

.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);
    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 {
    color: rgba(255, 255, 255, 0.7);
}

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

.sticky-cta-btn {
    display: block;
    padding: 16px 32px;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
}

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

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

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

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.about-intro {
    padding: 80px 0;
}

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

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

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

.value-card {
    flex: 1;
    min-width: 260px;
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

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

.timeline-section {
    padding: 80px 0;
}

.timeline-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 70px;
    top: 50px;
    width: 2px;
    height: calc(100% + 40px);
    background: var(--border-color);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    padding-top: 10px;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

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

.team-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.team-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.team-card {
    flex: 1;
    min-width: 260px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.team-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 20px;
    margin: 20px 0 8px;
    color: var(--text-dark);
}

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

.team-card p:last-child {
    padding: 0 20px 30px;
    color: var(--text-light);
    line-height: 1.7;
}

.stats-section {
    padding: 80px 0;
}

.stats-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.stat-card {
    flex: 1;
    min-width: 240px;
    background: var(--primary-color);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

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

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

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

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-content {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.service-detail-content.reverse {
    flex-direction: row-reverse;
}

.service-detail-text,
.service-detail-image {
    flex: 1;
    min-width: 300px;
}

.service-detail-text h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.service-detail-text p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 17px;
}

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

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

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 24px;
}

.service-detail-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

.additional-services h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.additional-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

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

.pricing-info-section {
    padding: 80px 0;
}

.pricing-info-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.pricing-info-section p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 17px;
}

.pricing-factors {
    list-style: none;
    margin: 30px 0;
}

.pricing-factors li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-dark);
}

.pricing-factors li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-section {
    padding: 80px 0;
}

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

.contact-info-cards {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

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

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

.contact-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    font-size: 14px;
    font-style: italic;
}

.contact-map-placeholder {
    flex: 1;
    min-width: 300px;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 400px;
}

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

.map-overlay p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

.map-note {
    font-size: 14px;
    font-style: italic;
    color: var(--primary-color);
}

.contact-cta-section {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact-cta-section p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

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

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

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

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

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

.thanks-section {
    padding: 80px 0;
}

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

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

.thanks-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

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

.thanks-next h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.next-steps {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.next-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

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

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

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

.btn-secondary-link {
    padding: 14px 32px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

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

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

.thanks-additional .info-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.thanks-additional .info-card {
    flex: 1;
    min-width: 280px;
}

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

.thanks-additional .info-card a {
    display: inline-block;
    margin-top: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.legal-content {
    padding: 80px 0;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.legal-text h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.legal-text h2:first-of-type {
    margin-top: 0;
}

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

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

.legal-text ul {
    margin: 16px 0 16px 30px;
}

.legal-text ul li {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

@media (max-width: 768px) {
    .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: var(--shadow-lg);
        padding: 20px 0;
        gap: 0;
    }

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

    .nav-menu li {
        padding: 15px 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-content p {
        font-size: 16px;
    }

    .card-grid,
    .service-cards,
    .testimonial-cards,
    .process-cards,
    .value-cards,
    .team-cards,
    .stats-grid,
    .additional-grid {
        flex-direction: column;
    }

    .service-card,
    .info-card,
    .testimonial-card,
    .process-card,
    .value-card,
    .team-card,
    .stat-card,
    .additional-card {
        min-width: 100%;
    }

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

    .service-detail-content.reverse {
        flex-direction: column;
    }

    .form-card {
        padding: 30px 20px;
    }

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

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

    .sticky-cta-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .legal-text {
        padding: 30px 20px;
    }

    .thanks-card {
        padding: 40px 30px;
    }

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