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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

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

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

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

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

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px 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: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
    transition: var(--transition);
}

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

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

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

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

.hero-left,
.hero-right {
    flex: 1;
    min-width: 0;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

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

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

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

.hero-right {
    overflow: hidden;
}

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

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.cta-primary.large {
    padding: 18px 48px;
    font-size: 18px;
}

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

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

.stats-strip {
    background: var(--secondary-color);
    padding: 50px 20px;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.content-split {
    display: flex;
    align-items: center;
    padding: 100px 0;
}

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

.split-text,
.split-visual {
    flex: 1;
    padding: 0 50px;
}

.split-text h2 {
    font-size: 38px;
    line-height: 1.3;
    color: var(--secondary-color);
    margin-bottom: 28px;
    font-weight: 700;
}

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

.split-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

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

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

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    color: var(--primary-color);
}

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

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

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

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

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

.testimonial-section {
    padding: 100px 0;
    background: white;
}

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

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

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

.testimonial-author strong {
    display: block;
    color: var(--secondary-color);
    font-size: 16px;
    margin-bottom: 4px;
}

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

.value-props {
    padding: 80px 0;
    background: white;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
}

.value-item h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

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

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

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

.selected-service-display {
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: none;
    text-align: center;
}

.selected-service-display.show {
    display: block;
}

.selected-service-display strong {
    color: var(--primary-color);
    font-size: 18px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

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

.btn-submit {
    padding: 16px 40px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

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

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

.final-cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta-content p {
    font-size: 19px;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

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

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

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

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

.footer-cta {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    margin-top: 12px;
    font-weight: 600;
}

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

.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.5);
    font-size: 14px;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: none;
    align-items: center;
    gap: 16px;
}

.sticky-cta.show {
    display: flex;
}

.sticky-cta-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sticky-cta-content span {
    font-weight: 600;
    color: var(--secondary-color);
}

.btn-sticky {
    padding: 10px 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 24px;
    font-weight: 600;
    font-size: 14px;
}

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

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

.page-hero h1,
.page-hero-legal h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.last-updated {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 8px;
}

.about-intro,
.story-section,
.approach-section,
.values-section,
.team-section,
.services-intro,
.services-detailed,
.service-guarantee,
.contact-content,
.contact-reasons {
    padding: 80px 0;
}

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

.intro-content-centered h2 {
    font-size: 38px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

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

.mission-section {
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
    padding: 80px 0;
}

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

.mission-content h2 {
    font-size: 38px;
    color: var(--secondary-color);
    margin-bottom: 28px;
    font-weight: 700;
}

.mission-statement {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-color);
    font-weight: 500;
}

.approach-grid,
.values-grid,
.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.approach-card,
.value-card,
.reason-card {
    flex: 1;
    min-width: 250px;
    padding: 35px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.approach-card h3,
.value-card h3,
.reason-card h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.approach-card p,
.value-card p,
.reason-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

.value-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.section-title-center {
    text-align: center;
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 50px;
    font-weight: 700;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: var(--text-light);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 50px;
}

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

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--bg-light);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.team-member h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.member-title {
    display: block;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

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

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

.cta-content-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-centered h2 {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

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

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.service-detail-left {
    flex: 1.5;
}

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

.service-badge {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-price-large {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 16px 0 24px;
}

.service-description {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-detail-left h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin: 32px 0 16px;
    font-weight: 700;
}

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

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

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

.service-note {
    background: var(--bg-light);
    padding: 16px 20px;
    border-radius: 8px;
    margin: 24px 0;
    font-size: 15px;
    color: var(--text-color);
}

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

.guarantee-content h2 {
    font-size: 38px;
    color: var(--secondary-color);
    margin-bottom: 50px;
    font-weight: 700;
}

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

.guarantee-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.guarantee-item h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

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

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-map {
    flex: 1;
}

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

.contact-detail {
    display: flex;
    gap: 20px;
    margin: 40px 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    color: var(--primary-color);
}

.contact-text h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

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

.timezone-note {
    font-size: 13px;
    margin-top: 8px;
    font-style: italic;
}

.response-time {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.response-time p {
    margin: 0;
    color: var(--text-color);
    font-size: 15px;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder img {
    width: 100%;
    height: auto;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.9);
    color: white;
    padding: 20px;
    text-align: center;
}

.map-overlay p {
    margin: 0;
    font-size: 14px;
}

.thanks-hero {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 100px 0;
}

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

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    color: white;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 800;
}

.thanks-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 50px;
}

.confirmation-box {
    background: white;
    color: var(--text-color);
    padding: 40px;
    border-radius: 12px;
    margin: 40px auto;
    text-align: left;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-confirmation {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.service-confirmation p {
    margin: 0;
    font-size: 16px;
}

.service-confirmation strong {
    color: var(--primary-color);
    font-size: 18px;
}

.confirmation-box h2 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

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

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

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

.step-content h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

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

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

.thanks-info {
    padding: 80px 0;
    background: white;
}

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

.info-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
}

.info-card h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

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

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

.testimonial-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 24px;
}

.legal-content {
    padding: 60px 0 100px;
    background: white;
}

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

.legal-document h2 {
    font-size: 32px;
    color: var(--secondary-color);
    margin: 50px 0 20px;
    font-weight: 700;
}

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

.legal-document h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin: 32px 0 16px;
    font-weight: 700;
}

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

.legal-document ul,
.legal-document ol {
    margin: 16px 0 24px 24px;
}

.legal-document li {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 10px;
}

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

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

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

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

.cookie-table th {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--secondary-color);
}

.cookie-table td {
    font-size: 14px;
    color: var(--text-color);
}

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

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

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

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

    .split-text,
    .split-visual {
        padding: 30px 20px;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
        padding: 40px 30px;
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 12px 0;
    }

    .sticky-cta {
        bottom: 80px;
        right: 10px;
        padding: 12px 16px;
    }

    .sticky-cta-content span {
        display: none;
    }
}

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

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

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

    .service-card {
        min-width: 100%;
    }

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

    .form-row {
        flex-direction: column;
    }

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

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

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