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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #ddd;
    --success-color: #27ae60;
    --warning-color: #f39c12;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

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

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

.nav-cta {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s, background 0.3s;
}

.nav-cta:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-narrow {
    max-width: 800px;
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.hero-content-narrow h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-subtext {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-hero-scroll {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

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

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

.story-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.story-text-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.story-text-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.story-text-narrow p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-emphasis {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 2rem;
}

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

.container-wide {
    max-width: 1300px;
    margin: 0 auto;
}

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-image {
    flex: 1;
}

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

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.problem-list {
    list-style: none;
    margin: 2rem 0;
}

.problem-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

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

.insight-text {
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 2rem;
}

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

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

.insight-block {
    padding: 3rem;
}

.insight-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.insight-block h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.insight-block p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    z-index: 999;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
}

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

.sticky-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-sticky {
    background: var(--white);
    color: var(--secondary-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s;
}

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

.section-trust {
    padding: 5rem 2rem;
    background: var(--white);
}

.container-medium {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-headline {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.trust-grid {
    display: flex;
    gap: 2rem;
}

.trust-card {
    flex: 1;
    padding: 2.5rem;
    background: var(--light-bg);
    border-radius: 10px;
    text-align: center;
}

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

.trust-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.trust-card p {
    font-size: 1rem;
    line-height: 1.7;
}

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

.testimonial-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
}

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

.reveal-container {
    max-width: 1300px;
    margin: 0 auto;
}

.reveal-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.reveal-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.reveal-intro p {
    font-size: 1.2rem;
    color: #666;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-item {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-item.featured {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #fff 0%, #fff5f4 100%);
}

.service-item.premium {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
}

.badge-popular, .badge-premium {
    position: absolute;
    top: -15px;
    right: 2rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-premium {
    background: var(--accent-color);
}

.service-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.service-duration {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.service-body {
    margin: 1.5rem 0;
}

.service-body p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.95rem;
}

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

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

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

.price-old {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #999;
    margin-right: 1rem;
}

.price-new {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.btn-select-service {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}

.btn-select-service:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.section-urgency {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.urgency-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.urgency-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.urgency-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-urgency {
    display: inline-block;
    background: var(--white);
    color: var(--secondary-color);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

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

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

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-intro p {
    font-size: 1.1rem;
    color: #666;
}

.application-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

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

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

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

.btn-submit {
    width: 100%;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1.2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.section-final-push {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: var(--white);
}

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

.final-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.final-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.btn-final {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: transform 0.3s;
}

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

.site-footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

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

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

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--white);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 10000;
    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-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

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

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

.page-hero-simple {
    padding: 10rem 2rem 5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2634 100%);
    margin-top: 80px;
}

.hero-content-center {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.hero-content-center h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-content-center p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story {
    padding: 5rem 2rem;
}

.story-block {
    margin-bottom: 3rem;
}

.story-block h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image-block {
    margin-top: 3rem;
}

.about-image-block img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-numbers {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.numbers-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.number-card {
    text-align: center;
    flex: 1;
}

.number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.number-label {
    font-size: 1rem;
    color: #666;
}

.about-team {
    padding: 5rem 2rem;
}

.team-grid {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

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

.member-image {
    margin-bottom: 1.5rem;
}

.member-image img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin: 0 auto;
}

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

.member-role {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-philosophy {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.philosophy-grid {
    display: flex;
    gap: 2rem;
}

.philosophy-item {
    flex: 1;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    text-align: left;
}

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

.philosophy-item p {
    font-size: 1rem;
    line-height: 1.7;
}

.about-cta {
    padding: 5rem 2rem;
}

.cta-box-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: var(--light-bg);
    border-radius: 12px;
}

.cta-box-centered h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-box-centered p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.btn-large {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s, background 0.3s;
}

.btn-large:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.services-detail-page {
    padding: 5rem 2rem;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
}

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

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

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-content {
    padding: 2.5rem;
}

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

.service-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.meta-item {
    font-size: 0.9rem;
    color: #666;
    padding: 0.3rem 1rem;
    background: var(--light-bg);
    border-radius: 20px;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.service-curriculum,
.service-includes {
    list-style: none;
    margin-bottom: 2rem;
}

.service-curriculum li,
.service-includes li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
}

.service-curriculum li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.5rem;
}

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

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

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

.price-comparison {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-save {
    font-size: 0.9rem;
    color: var(--success-color);
    font-weight: 600;
}

.services-faq {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

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

.faq-container h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

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

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
}

.services-cta {
    padding: 5rem 2rem;
}

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

.cta-centered h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-centered p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.contact-section {
    padding: 5rem 2rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.7;
}

.contact-item a {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.social-links-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-link {
    color: var(--accent-color);
    font-weight: 600;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--secondary-color);
}

.contact-map-placeholder {
    flex: 1;
}

.map-embed {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

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

.contact-cta {
    padding: 5rem 2rem;
}

.legal-page {
    padding: 5rem 2rem;
    margin-top: 80px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

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

.legal-updated {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.legal-container p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-container ul li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.legal-container a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

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

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    font-weight: 600;
}

.thanks-section {
    padding: 8rem 2rem;
    margin-top: 80px;
    background: var(--light-bg);
}

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

.thanks-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #666;
}

.thanks-details {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.submission-summary p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.thanks-next-steps {
    margin: 4rem 0;
}

.thanks-next-steps h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.step-item {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

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

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.step-item p {
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, background 0.3s;
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, background 0.3s;
}

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

.thanks-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.thanks-contact a {
    color: var(--accent-color);
    font-weight: 600;
}

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

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

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

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

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content-narrow h1 {
        font-size: 2.5rem;
    }

    .service-footer {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .numbers-grid {
        flex-wrap: wrap;
    }

    .number-card {
        min-width: 45%;
    }

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

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