:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --background-light: #f9fafb;
    --background-white: #ffffff;
    --border-color: #e5e7eb;
    --accent-color: #f59e0b;
    --error-color: #ef4444;
    --success-color: #10b981;
}

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

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(--background-white);
    overflow-x: hidden;
}

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

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.nav-brand a {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

.nav-cta {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.hero-immersive {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin-top: 70px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23667eea" width="1200" height="600"/><path fill="%23764ba2" opacity="0.3" d="M0 300 Q300 100 600 300 T1200 300 V600 H0 Z"/></svg>');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 900px;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtext {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.narrow-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.wide-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.story-intro {
    background: var(--background-white);
    padding: 5rem 2rem;
}

.lead-text {
    font-size: 1.375rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.story-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.problem-section {
    background: var(--background-light);
    padding: 5rem 2rem;
}

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

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

.split-text {
    flex: 1;
}

.split-visual {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.3;
}

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

.emphasis {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2rem;
}

.visual-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.visual-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.problem-list {
    list-style: none;
}

.problem-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 1.0625rem;
}

.problem-list li:before {
    content: "✕";
    position: absolute;
    left: 0;
    color: var(--error-color);
    font-weight: bold;
}

.insight-section {
    background: var(--background-white);
    padding: 6rem 2rem;
}

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

.insight-section .narrow-container > p {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.insight-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.insight-card {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.insight-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.insight-card h3 {
    font-size: 1.625rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.insight-card p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.7;
}

.trust-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 6rem 2rem;
}

.trust-section h2 {
    color: white;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 350px;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 1.0625rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 1.0625rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9375rem;
}

.method-section {
    background: var(--background-white);
    padding: 6rem 2rem;
}

.method-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.intro-text {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    position: relative;
}

.timeline-marker {
    min-width: 120px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    text-align: center;
    height: fit-content;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: var(--background-light);
    padding: 2rem;
    border-radius: 12px;
}

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

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

.benefit-section {
    background: var(--background-light);
    padding: 6rem 2rem;
}

.benefit-visual {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-radius: 12px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.benefit-visual:after {
    content: '✓';
    font-size: 8rem;
    color: var(--success-color);
    opacity: 0.3;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-list li {
    font-size: 1.0625rem;
    line-height: 1.7;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.benefit-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.25rem;
}

.benefit-list strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.cta-inline {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.pricing-section {
    background: var(--background-white);
    padding: 6rem 2rem;
}

.pricing-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.price-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    position: relative;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.price-header h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.price-desc {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.price-amount {
    display: flex;
    align-items: baseline;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0.25rem;
}

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

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

.price-features li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
}

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

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

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

.price-card.featured .btn-select {
    background: var(--accent-color);
}

.price-card.featured .btn-select:hover {
    background: #d97706;
}

.urgency-section {
    background: var(--background-light);
    padding: 5rem 2rem;
}

.urgency-box {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    border-left: 6px solid var(--accent-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.urgency-box h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.urgency-box p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.cta-large {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1.5rem;
}

.cta-large:hover {
    background: #d97706;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.4);
}

.form-section {
    background: var(--background-white);
    padding: 6rem 2rem;
}

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

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

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

.course-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    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(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    padding: 1rem 2rem;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.sticky-text {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
}

.sticky-btn {
    background: white;
    color: var(--primary-dark);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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 {
    margin: 0;
    flex: 1;
}

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

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

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

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

.btn-accept:hover {
    background: #059669;
}

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

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

.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

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

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

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 8rem 2rem 4rem;
    margin-top: 70px;
    color: white;
    text-align: center;
}

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

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

.about-content,
.services-detail,
.contact-content,
.legal-page {
    padding: 4rem 2rem;
}

.about-content h2,
.services-detail h2,
.contact-content h2,
.legal-page h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-content h3,
.services-detail h3,
.contact-content h3,
.legal-page h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-content h4,
.legal-page h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.about-content p,
.services-detail p,
.contact-content p,
.legal-page p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.about-content ul,
.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.about-content ul li,
.legal-page ul li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.values-section {
    margin: 3rem 0;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 12px;
    flex: 1;
    min-width: 250px;
}

.value-card h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 1rem;
    color: var(--text-light);
}

.cta-section {
    background: var(--background-light);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.875rem 2.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

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

.service-block {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.service-header h2 {
    margin: 0;
    font-size: 2rem;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.service-price span {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-light);
}

.service-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-body h3 {
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-body ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-body ul li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-light);
}

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

.additional-services {
    background: var(--background-light);
    padding: 4rem 2rem;
}

.additional-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.additional-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.additional-card p {
    font-size: 1rem;
    color: var(--text-light);
}

.contact-grid {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.contact-details {
    margin: 2rem 0;
}

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

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    margin: 0;
}

.contact-note {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-note h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.map-placeholder {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.map-placeholder p {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.map-description {
    font-size: 1rem;
    color: var(--text-light);
}

.faq-section {
    background: var(--background-light);
    padding: 4rem 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.faq-item p {
    margin: 0;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

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

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

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

.cookie-table td {
    color: var(--text-light);
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-light);
    padding: 2rem;
}

.thanks-container {
    background: white;
    padding: 4rem;
    border-radius: 12px;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.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 2rem;
}

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

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

.thanks-info {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.selected-service {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin: 0;
}

.thanks-next {
    text-align: left;
    margin: 2rem 0;
}

.thanks-next h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.next-steps {
    list-style: none;
}

.next-steps li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    font-size: 1.0625rem;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .floating-nav {
        flex-wrap: wrap;
        padding: 1rem;
    }

    .nav-links {
        order: 3;
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
        display: none;
    }

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

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

    .hero-subtext {
        font-size: 1.125rem;
    }

    .split-layout {
        flex-direction: column;
        gap: 2rem;
    }

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

    .split-text h2 {
        font-size: 1.875rem;
    }

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

    .testimonials-flow {
        flex-direction: column;
    }

    .timeline:before {
        display: none;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .sticky-content {
        flex-direction: column;
        gap: 1rem;
    }

    .sticky-btn {
        width: 100%;
    }

    .page-hero {
        padding: 6rem 2rem 3rem;
    }

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

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

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .thanks-container {
        padding: 2rem;
    }

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

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

    .btn-secondary {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .cookie-table {
        font-size: 0.875rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .narrow-container,
    .wide-container {
        padding: 3rem 1rem;
    }

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

    .amount {
        font-size: 2.5rem;
    }

    .cta-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}