/* 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;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

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

ul {
    list-style: none;
}

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

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

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

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

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

.btn-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: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

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

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: #3498db;
}

.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%;
}

/* Hero Section - Split Screen */
.hero-split {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 4rem 2rem;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    flex: 1;
}

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

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
    position: relative;
}

.hero-visual img {
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* CTA Buttons */
.cta-primary,
.cta-secondary,
.cta-inline,
.cta-button,
.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary,
.cta-button {
    background: #ffffff;
    color: #667eea;
}

.cta-primary:hover,
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-secondary:hover {
    background: #ffffff;
    color: #667eea;
}

.cta-inline {
    background: #3498db;
    color: #ffffff;
    padding: 0.85rem 2rem;
    font-size: 1rem;
}

.cta-inline:hover {
    background: #2980b9;
}

.cta-button-secondary {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.cta-button-secondary:hover {
    background: #2c3e50;
    color: #ffffff;
}

/* Split Screen Sections */
.intro-split,
.insight-split,
.approach-split {
    padding: 5rem 2rem;
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.split-image {
    flex: 1;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.3;
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.intro-split.reverse .split-container {
    flex-direction: row-reverse;
}

.benefit-list {
    margin: 2rem 0;
}

.benefit-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #444;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.3rem;
}

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

.content-narrow {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.problem-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.problem-card p {
    color: #555;
    line-height: 1.7;
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 5rem 2rem;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-row {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

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

.author {
    font-weight: 600;
    font-size: 0.95rem;
}

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

.services-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

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

.services-header p {
    font-size: 1.2rem;
    color: #555;
}

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

.service-card {
    display: flex;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

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

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f39c12;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
}

.service-visual {
    flex: 0 0 45%;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

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

.service-info > p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-info ul {
    margin: 1rem 0 2rem;
}

.service-info ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #444;
}

.service-info ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 1.5rem;
    line-height: 1;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin: auto 0 1.5rem 0;
}

.select-service {
    padding: 1rem 2rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Urgency Section */
.urgency-section {
    background: #2c3e50;
    color: #ffffff;
    padding: 5rem 2rem;
}

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

.urgency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.urgency-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.urgency-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #f39c12;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

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

.form-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.form-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.indicator {
    font-size: 1rem;
    color: #27ae60;
    font-weight: 500;
}

.form-wrapper {
    flex: 1;
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.selection-notice {
    background: #e8f5e9;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #27ae60;
}

.selection-notice p {
    color: #2c3e50;
    font-size: 0.95rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

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

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

.form-privacy {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #777;
    text-align: center;
}

.form-privacy a {
    color: #3498db;
    text-decoration: underline;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
    animation: bounceIn 0.5s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.sticky-cta a {
    display: block;
    background: #27ae60;
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.4);
    font-weight: 600;
}

.sticky-cta a:hover {
    background: #229954;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.6);
}

/* Footer */
.main-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

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

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

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

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

.footer-section ul li a {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

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

/* Page Hero */
.page-hero,
.contact-hero,
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.hero-content-page,
.contact-hero-content,
.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.hero-content-page p,
.contact-hero-content p,
.about-hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Services Detailed */
.services-detailed {
    padding: 4rem 2rem;
}

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

.service-detail-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}

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

.featured-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #f39c12;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    z-index: 10;
}

.service-detail-header {
    position: relative;
    height: 350px;
}

.service-detail-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-price-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #27ae60;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.service-detail-content {
    padding: 3rem;
}

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

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

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.service-detail-content ul {
    margin: 1rem 0 2rem;
}

.service-detail-content ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #444;
}

.service-detail-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Services CTA */
.services-cta {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

.cta-content-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

/* About Page */
.story-section {
    padding: 5rem 2rem;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.story-text {
    flex: 1;
}

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

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

.story-image {
    flex: 1;
}

.mission-section,
.values-section,
.team-section,
.approach-section,
.commitment-section {
    padding: 5rem 2rem;
}

.mission-section {
    background: #f8f9fa;
}

.mission-content,
.values-container,
.team-content,
.approach-container,
.commitment-content {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-content h2,
.values-container h2,
.team-content h2,
.approach-container h2,
.commitment-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.mission-content > p,
.team-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.8;
}

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

.mission-item,
.value-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.mission-item p,
.value-card p {
    color: #555;
    line-height: 1.7;
}

.expertise-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

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

.stat-box .stat-label {
    font-size: 1rem;
    color: #555;
    text-align: center;
}

.approach-split {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.approach-image {
    flex: 1;
}

.approach-text {
    flex: 1;
}

.approach-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.approach-text ul {
    margin: 1.5rem 0;
}

.approach-text ul li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #444;
}

.approach-text ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 1.5rem;
    line-height: 1;
}

.commitment-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.commitment-item {
    background: #e8f5e9;
    padding: 1.2rem;
    border-radius: 8px;
    font-size: 1.05rem;
    color: #2c3e50;
    border-left: 4px solid #27ae60;
}

.about-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.about-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Contact Page */
.contact-info-section {
    padding: 5rem 2rem;
}

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

.contact-details {
    flex: 1;
}

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

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #3498db;
}

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

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

.contact-map {
    flex: 1;
}

.contact-map img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-section {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

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

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

.faq-item {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    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: #2c3e50;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

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

.contact-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.contact-cta-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.contact-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Thanks Page */
.thanks-hero {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
    padding: 6rem 2rem;
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: #ffffff;
    color: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 2rem;
    font-weight: bold;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.service-confirmation {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    display: inline-block;
    text-align: left;
}

.service-confirmation p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.next-steps {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.next-steps-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.step-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

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

.step-card p {
    color: #555;
    line-height: 1.7;
}

.thanks-resources {
    padding: 5rem 2rem;
}

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

.resources-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.resources-container > p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
}

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

.resource-card {
    flex: 1;
    min-width: 300px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: left;
}

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

.resource-card p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.resource-link {
    color: #3498db;
    font-weight: 600;
}

.resource-link:hover {
    text-decoration: underline;
}

.thanks-contact {
    background: #2c3e50;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-contact-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.thanks-contact-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.contact-email {
    font-size: 1.3rem;
}

.contact-email a {
    color: #3498db;
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 2rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.last-updated {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 3rem;
}

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

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

.legal-content h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem;
    color: #2c3e50;
}

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

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

.legal-content ul li {
    list-style: disc;
    margin: 0.5rem 0;
    color: #555;
    line-height: 1.7;
}

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

.cookie-table thead {
    background: #f8f9fa;
}

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

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

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

    .split-container,
    .story-split,
    .approach-split,
    .form-container-split,
    .contact-info-container {
        flex-direction: column;
        gap: 3rem;
    }

    .intro-split.reverse .split-container {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
    }

    .service-visual {
        flex: 0 0 300px;
    }

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

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

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

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

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

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .split-content h2,
    .mission-content h2,
    .values-container h2 {
        font-size: 2rem;
    }

    .problem-grid,
    .testimonial-row,
    .mission-grid,
    .values-split,
    .urgency-stats,
    .expertise-stats,
    .steps-grid {
        flex-direction: column;
    }

    .service-visual {
        flex: 0 0 250px;
    }

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

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

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

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

    .split-content h2 {
        font-size: 1.7rem;
    }

    .service-info h3 {
        font-size: 1.5rem;
    }

    .cta-primary,
    .cta-secondary {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
}
