/* 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: #fff;
}

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

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

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    text-align: center;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #2ecc71;
    color: #fff;
}

.btn-cookie:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

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

.btn-cookie.secondary:hover {
    background: #fff;
    color: #1a1a1a;
}

/* Navigation */
.nav-minimal {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

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

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

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

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

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

.btn-sticky {
    display: inline-block;
    padding: 1rem 2rem;
    background: #e74c3c;
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

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

/* Hero Section - Immersive */
.hero-immersive {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.95) 0%, rgba(52, 73, 94, 0.85) 100%);
    padding: 4rem 2rem;
}

.hero-content-narrow {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.hero-immersive h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-hero-transparent {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-hero-transparent:hover {
    background: #fff;
    color: #2c3e50;
    transform: translateY(-2px);
}

/* Container Utilities */
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

/* Story Sections */
.story-opener {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.opening-line {
    font-size: 1.3rem;
    font-style: italic;
    color: #7f8c8d;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.story-opener h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-opener p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.inline-cta {
    margin-top: 2.5rem;
}

.link-arrow {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3498db;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    color: #2980b9;
    gap: 0.8rem;
}

/* Problem Amplification */
.problem-amplification {
    padding: 5rem 2rem;
    background: #fff;
}

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

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #2c3e50;
}

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

.problem-item h3 {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.problem-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #34495e;
}

.split-visual img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Insight Reveal */
.insight-reveal {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.insight-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.insight-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.insight-box {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.insight-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0;
}

/* Storytelling Section */
.storytelling-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.story-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.story-content {
    padding: 2rem;
}

.story-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #34495e;
}

blockquote {
    border-left: 4px solid #3498db;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.15rem;
    color: #7f8c8d;
}

/* Trust Building */
.trust-building {
    padding: 5rem 2rem;
    background: #fff;
}

.trust-building h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.trust-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: #2ecc71;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.trust-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.trust-item p {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-inline {
    padding: 5rem 2rem;
    background: #2c3e50;
    color: #fff;
}

.testimonial {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial cite {
    display: block;
    font-size: 1rem;
    color: #bdc3c7;
    font-style: normal;
}

/* Benefits Reveal */
.benefits-reveal {
    padding: 5rem 2rem;
    background: #fff;
}

.benefits-reveal h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.benefit-flow {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.benefit-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #34495e;
}

/* Services Pricing */
.services-pricing {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.services-pricing h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.pricing-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
}

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

.service-card.featured {
    border: 3px solid #3498db;
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 2rem;
    background: #3498db;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1.5rem;
}

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

.service-features span {
    font-size: 1rem;
    color: #2c3e50;
    padding-left: 1.5rem;
    position: relative;
}

.service-features span::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    margin: 1.5rem 0;
}

.btn-service {
    width: 100%;
    padding: 1rem;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Urgency Section */
.urgency-section {
    padding: 4rem 2rem;
    background: #fff3cd;
}

.urgency-box {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 5px solid #ffc107;
}

.urgency-box h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.urgency-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1rem;
}

.urgency-box p:last-child {
    margin-bottom: 0;
}

/* Form Section */
.form-section {
    padding: 5rem 2rem;
    background: #fff;
}

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

.form-wrapper h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
    line-height: 1.7;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    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: #3498db;
}

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

.checkbox-group input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

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

.btn-submit {
    padding: 1.2rem;
    background: #2ecc71;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Final CTA */
.final-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-final {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #e74c3c;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-final:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #bdc3c7;
    padding: 3rem 2rem 1rem;
}

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

.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-section a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 0.9rem;
}

/* Page Hero (for internal pages) */
.page-hero {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    text-align: center;
}

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

/* About Page */
.about-story,
.values-section,
.team-section,
.results-section,
.cta-section {
    padding: 4rem 2rem;
}

.about-story {
    background: #fff;
}

.about-story h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.mission-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 5px solid #3498db;
}

.mission-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.values-section {
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3498db;
}

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

.team-section {
    background: #fff;
}

.team-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.team-section > p {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.team-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.results-section {
    background: #2c3e50;
    color: #fff;
}

.results-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #bdc3c7;
}

.cta-section {
    background: #f8f9fa;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-section p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

/* Services Page */
.services-intro {
    padding: 3rem 2rem;
    background: #fff;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #34495e;
    text-align: center;
}

.services-detailed {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.service-detail-card {
    background: #fff;
    border-radius: 10px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
}

.service-detail-card.featured-service {
    border: 3px solid #3498db;
}

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

.service-detail-header h2 {
    font-size: 2rem;
    color: #2c3e50;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
}

.service-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 2rem;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.feature-list li {
    padding-left: 1.8rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #34495e;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
}

.service-comparison {
    padding: 4rem 2rem;
    background: #fff;
}

.service-comparison h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table th {
    background: #3498db;
    color: #fff;
    font-weight: 600;
}

.comparison-table td {
    font-size: 1rem;
    color: #34495e;
}

.cta-services {
    padding: 4rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.cta-services h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-services p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Contact Page */
.contact-content {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

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

.info-block {
    margin-bottom: 2rem;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #3498db;
}

.info-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
}

.info-block a {
    color: #3498db;
}

.info-note {
    font-size: 0.95rem !important;
    color: #7f8c8d !important;
    margin-top: 0.5rem;
}

.contact-form-wrapper {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-form-wrapper > p {
    font-size: 1.05rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-cta {
    padding: 4rem 2rem;
    background: #fff;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-cta p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: #fff;
}

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

.thanks-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    opacity: 0.95;
}

.thanks-content {
    padding: 4rem 2rem;
    background: #fff;
}

.thanks-box {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.thanks-box h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.step-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #3498db;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step-text p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #34495e;
}

.service-confirmation {
    background: #e8f5e9;
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid #2ecc71;
    margin-top: 2rem;
    display: none;
}

.service-confirmation h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-selected {
    font-size: 1.2rem;
    color: #2ecc71;
    margin-bottom: 1rem;
}

.thanks-resources {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.thanks-resources h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-resources > p {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.resource-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.resource-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.resource-card p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.thanks-cta {
    padding: 3rem 2rem;
    background: #fff;
}

.thanks-cta p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #fff;
    color: #3498db;
    border: 2px solid #3498db;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #3498db;
    color: #fff;
    transform: translateY(-2px);
}

/* Legal Pages */
.legal-content {
    padding: 4rem 2rem;
    background: #fff;
}

.legal-content h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: #2c3e50;
}

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

.legal-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #34495e;
}

.legal-content h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: #34495e;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.2rem;
}

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

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 0.8rem;
    list-style: disc;
}

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

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .hero-immersive h1 {
        font-size: 3.5rem;
    }

    .container-split {
        flex-direction: row;
        align-items: center;
    }

    .split-text,
    .split-visual {
        flex: 1;
    }

    .trust-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .story-card {
        flex-direction: row;
    }

    .story-image,
    .story-content {
        flex: 1;
    }

    .story-image img {
        height: 100%;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .service-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .resource-cards {
        flex-direction: row;
    }

    .resource-card {
        flex: 1;
    }

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

    .contact-info,
    .contact-form-wrapper {
        flex: 1;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex !important;
    }

    .hero-immersive h1 {
        font-size: 4rem;
    }

    .trust-grid {
        flex-wrap: nowrap;
    }

    .trust-item {
        flex: 1;
    }

    .values-grid {
        flex-wrap: nowrap;
    }

    .value-card {
        flex: 1;
    }

    .stats-grid {
        flex-wrap: nowrap;
    }

    .stat-item {
        flex: 1;
    }

    .service-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 1.33rem);
    }
}

/* Mobile Menu */
@media (max-width: 1023px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 1rem 0;
    }

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

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .btn-sticky {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
