/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Container Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #27ae60;
    color: white;
}

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

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

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

/* Navigation */
.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e74c3c;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Hero Section */
.hero-immersive {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 900px;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 18px 45px;
    background: #e74c3c;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

/* Story Hook Section */
.story-hook {
    padding: 100px 20px;
    background: #f8f9fa;
}

.story-lead {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #34495e;
}

.story-hook p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 25px;
}

.story-emphasis {
    font-size: 1.6rem;
    font-weight: 700;
    color: #e74c3c;
    margin-top: 40px;
}

/* Insight Block */
.insight-block {
    padding: 100px 20px;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.3;
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.split-image {
    flex: 1;
}

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

/* Problem Amplification */
.problem-amplification {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.section-title-center {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.card-problem {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-problem h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-problem p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Solution Reveal */
.solution-reveal {
    padding: 120px 20px;
    background: #ffffff;
}

.solution-reveal h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    text-align: center;
}

.intro-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e74c3c;
    text-align: center;
    margin-bottom: 30px;
}

.solution-reveal p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: center;
}

/* Visual Story */
.visual-story {
    padding: 0;
}

.story-image-block {
    position: relative;
    height: 600px;
}

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

.story-overlay-text {
    position: absolute;
    bottom: 60px;
    left: 60px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    max-width: 500px;
    border-left: 5px solid #e74c3c;
}

.story-overlay-text p {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 15px;
    color: #2c3e50;
}

.story-overlay-text span {
    font-size: 1rem;
    color: #7f8c8d;
}

/* Trust Builder */
.trust-builder {
    padding: 100px 20px;
    background: #f8f9fa;
}

.trust-builder h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 70px;
}

.trust-columns {
    display: flex;
    gap: 50px;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.trust-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Testimonials */
.testimonials-inline {
    padding: 100px 20px;
    background: #34495e;
    color: white;
}

.testimonial-large {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-left: 5px solid #e74c3c;
    margin-bottom: 40px;
    border-radius: 8px;
}

.testimonial-large p {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-large cite {
    font-size: 1rem;
    font-style: normal;
    opacity: 0.9;
}

/* Benefits Layered */
.benefits-layered {
    padding: 100px 20px;
}

.section-title-left {
    font-size: 2.8rem;
    margin-bottom: 60px;
}

.benefits-offset {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.benefit-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.benefit-card:nth-child(even) {
    flex-direction: row-reverse;
    margin-left: 60px;
}

.benefit-card:nth-child(odd) {
    margin-right: 60px;
}

.benefit-card img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.benefit-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.benefit-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Services Reveal */
.services-reveal {
    padding: 120px 20px;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #7f8c8d;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    background: white;
    border: 2px solid #ecf0f1;
    border-radius: 12px;
    padding: 35px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #e74c3c;
}

.service-card.featured {
    border: 3px solid #e74c3c;
    position: relative;
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #e74c3c;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-header {
    margin-bottom: 20px;
}

.service-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.service-tag {
    display: inline-block;
    background: #ecf0f1;
    color: #7f8c8d;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
}

.service-desc {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555;
}

.service-includes {
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-includes p {
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.service-includes ul {
    list-style: none;
}

.service-includes li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px 0;
    border-top: 2px solid #ecf0f1;
}

.price-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e74c3c;
}

.price-period {
    font-size: 1rem;
    color: #7f8c8d;
}

.btn-select-service {
    width: 100%;
    padding: 15px;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Urgency Block */
.urgency-block {
    padding: 100px 20px;
    background: #ffe5e5;
}

.urgency-block h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-align: center;
}

.urgency-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
}

.urgency-emphasis {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e74c3c;
}

.cta-inline-large {
    display: inline-block;
    margin: 30px auto 0;
    padding: 18px 45px;
    background: #e74c3c;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

.urgency-block {
    text-align: center;
}

/* Form Section */
.form-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.form-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
}

.form-intro {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 50px;
    opacity: 0.95;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.form-group {
    margin-bottom: 25px;
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: white;
    background: white;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

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

.checkbox-group a {
    color: #3498db;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(231, 76, 60, 0.98);
    padding: 15px 20px;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

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

.sticky-cta-btn {
    padding: 12px 30px;
    background: white;
    color: #e74c3c;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

/* Footer */
.main-footer {
    background: #2c3e50;
    color: white;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.header-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Services Detailed */
.services-detailed {
    padding: 80px 20px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.service-tagline {
    color: #e74c3c;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-features h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.service-features li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.6;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-pricing-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 25px;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    display: block;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: #e74c3c;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: #2c3e50;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #34495e;
}

.featured-service {
    border: 3px solid #e74c3c;
    padding: 40px;
    border-radius: 12px;
    background: #fff8f8;
}

.cta-section {
    padding: 80px 20px;
    background: #f8f9fa;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #555;
}

/* About Page */
.about-story {
    padding: 80px 20px;
}

.about-hero-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-story h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.lead-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #e74c3c;
    margin-bottom: 25px;
}

.about-story p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-mission {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.mission-text {
    flex: 1.5;
}

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #7f8c8d;
}

.about-values {
    padding: 80px 20px;
}

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

.value-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid #e74c3c;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-team {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.team-member {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 12px;
}

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

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #2c3e50;
}

.team-role {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.about-approach {
    padding: 80px 20px;
}

.about-approach h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.about-approach p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: center;
}

.about-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 35px;
}

/* Contact Page */
.contact-content {
    padding: 80px 20px;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info > p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #e74c3c;
}

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

.contact-item a {
    color: #3498db;
}

.contact-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 4px;
}

.contact-note strong {
    color: #856404;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 8px;
}

.contact-faq {
    padding: 80px 20px;
    background: #f8f9fa;
}

.contact-faq h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #e74c3c;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.contact-final-cta {
    padding: 80px 20px;
    text-align: center;
}

.contact-final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-final-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Thanks Page */
.thanks-page {
    padding: 100px 20px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #27ae60;
    color: white;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-lead {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 40px;
}

.thanks-details {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.thanks-details strong {
    color: #e74c3c;
}

.thanks-next-steps {
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.thanks-next-steps ul {
    list-style: none;
    display: inline-block;
    text-align: left;
}

.thanks-next-steps li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.thanks-next-steps li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
}

.thanks-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #7f8c8d;
    margin-bottom: 40px;
}

/* Legal Pages */
.legal-page {
    padding: 80px 20px;
}

.legal-intro {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-page ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

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

.gdpr-table th,
.gdpr-table td,
.cookie-table th,
.cookie-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.gdpr-table th,
.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .container-split,
    .mission-split,
    .contact-grid {
        flex-direction: column;
    }

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

    .benefit-card {
        flex-direction: column;
        margin: 0 !important;
    }

    .benefit-card img {
        width: 100%;
        height: 250px;
    }

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

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

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

    .nav-menu li {
        border-bottom: 1px solid #ecf0f1;
        padding: 15px 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

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

    .story-overlay-text {
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 25px;
    }

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

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

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

    .sticky-cta-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

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

    .story-lead {
        font-size: 1.2rem;
    }

    .split-text h2,
    .about-story h2 {
        font-size: 1.8rem;
    }

    .cookie-content {
        font-size: 0.9rem;
    }

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

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