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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #4a9fd8;
    --accent-color: #e67e22;
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --border-color: #dfe6e9;
    --success-color: #27ae60;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --card-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.container {
    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(--secondary-color);
}

.main-nav {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-menu a {
    font-weight: 500;
    transition: color 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    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: 2rem;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s, opacity 0.3s;
}

.btn-accept {
    background: var(--success-color);
    color: #fff;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-accept:hover,
.btn-reject:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

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

.hero-overlay {
    width: 100%;
    padding: 4rem 2rem;
}

.hero-content-card {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-content-card h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-bg);
}

.hero-content-card p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-primary {
    background: var(--accent-color);
    color: #fff;
}

.cta-primary:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

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

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

.trust-badges {
    background: var(--light-bg);
    padding: 3rem 0;
}

.badges-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.badge-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.badge-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.badge-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-bg);
}

.badge-card p {
    color: var(--text-light);
}

.intro-section {
    padding: 4rem 0;
}

.intro-card {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    max-width: 900px;
    margin: 0 auto;
}

.intro-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.services-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #fff 0%, var(--light-bg) 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-bg);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-image {
    height: 200px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    position: relative;
}

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-features span {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.price-tag {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.btn-select,
.btn-submit,
.btn-primary {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover,
.btn-submit:hover,
.btn-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.btn-secondary {
    width: 100%;
    padding: 1rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
}

.cta-section-mid {
    padding: 4rem 0;
    background: var(--primary-color);
}

.cta-card-inline {
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.cta-card-inline h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.cta-card-inline p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    flex: 1;
    min-width: 300px;
    max-width: 380px;
}

.rating {
    color: #ffa500;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.process-section {
    padding: 5rem 0;
}

.process-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.process-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

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

.expertise-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.expertise-card-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.expertise-content {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.expertise-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.expertise-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.expertise-list {
    list-style: none;
    margin-bottom: 2rem;
}

.expertise-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--text-dark);
}

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

.link-arrow {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.form-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--light-bg), #fff);
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--card-shadow-hover);
}

.form-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-bg);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.guarantee-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.guarantee-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.guarantee-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    flex: 1;
    min-width: 300px;
    max-width: 380px;
}

.guarantee-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.main-footer {
    background: var(--dark-bg);
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-col p {
    color: #b2bec3;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #b2bec3;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b2bec3;
}

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

.sticky-cta-btn {
    background: var(--accent-color);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(230, 126, 34, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(230, 126, 34, 0.5);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
}

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

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

.about-intro {
    padding: 4rem 0;
}

.about-card-large {
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    max-width: 1000px;
    margin: 0 auto;
}

.about-card-large h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-card-large p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.value-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    flex: 1;
    min-width: 280px;
    max-width: 300px;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

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

.timeline-section {
    padding: 5rem 0;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 100px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark-bg);
}

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

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

.team-intro-card {
    max-width: 900px;
    margin: 0 auto 3rem;
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    text-align: center;
}

.team-intro-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.team-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.stat-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    text-align: center;
    min-width: 200px;
    flex: 1;
    max-width: 280px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
}

.certifications-section {
    padding: 5rem 0;
}

.cert-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.cert-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    flex: 1;
    min-width: 320px;
    max-width: 380px;
}

.cert-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.cta-about {
    padding: 4rem 0;
    background: var(--light-bg);
}

.cta-card-centered {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.cta-card-centered h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.cta-card-centered p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.services-detail-section {
    padding: 4rem 0;
}

.service-detail-card {
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    margin-bottom: 2.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-detail-header h2 {
    font-size: 2rem;
    color: var(--dark-bg);
}

.price-badge {
    background: var(--accent-color);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.25rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: var(--text-dark);
}

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

.service-advantages {
    padding: 5rem 0;
    background: var(--light-bg);
}

.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.advantage-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    flex: 1;
    min-width: 320px;
    max-width: 380px;
}

.advantage-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

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

.service-process {
    padding: 5rem 0;
}

.process-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.flow-step {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    flex: 1;
    min-width: 220px;
    max-width: 240px;
    text-align: center;
}

.flow-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.flow-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--dark-bg);
}

.flow-step p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 700;
}

.cta-services {
    padding: 4rem 0;
    background: var(--primary-color);
}

.cta-card-large {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.cta-card-large h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.cta-card-large p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-info-section {
    padding: 4rem 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.contact-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

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

.contact-content {
    padding: 4rem 0;
}

.contact-info-card,
.contact-questions-card,
.contact-map-placeholder {
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    margin-bottom: 2.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-card h2,
.contact-questions-card h2,
.contact-map-placeholder h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-info-card p,
.contact-questions-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--dark-bg);
}

.map-box {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.map-box p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.thanks-section {
    padding: 5rem 0;
}

.thanks-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 4rem;
    border-radius: 16px;
    box-shadow: var(--card-shadow-hover);
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--success-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 2rem;
}

.thanks-card h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-details {
    text-align: left;
    margin-bottom: 3rem;
}

.thanks-details h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
}

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

.step-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-bg);
}

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

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

.thanks-service-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--dark-bg);
}

.thanks-service-info p {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.thanks-info {
    color: var(--text-light);
    font-size: 1.05rem;
}

.thanks-reassurance {
    padding: 4rem 0;
    background: var(--light-bg);
}

.thanks-reassurance h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--dark-bg);
}

.reassurance-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.reassurance-item {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.reassurance-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.reassurance-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

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

.legal-content {
    padding: 4rem 0;
}

.legal-card {
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    margin-bottom: 2.5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.legal-card h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.legal-card h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: var(--dark-bg);
}

.legal-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.legal-card ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-card li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

    .hero-content-card p {
        font-size: 1.05rem;
    }

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

    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }

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

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

    .timeline-item {
        flex-direction: column;
    }

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

    .flow-arrow {
        display: none;
    }

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

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

    .sticky-cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .cookies-table {
        font-size: 0.9rem;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-content-card {
        padding: 2rem;
    }

    .hero-content-card h1 {
        font-size: 1.75rem;
    }

    .thanks-card {
        padding: 2rem;
    }
}