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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 0.9rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    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: 1px solid #ffffff;
}

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

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

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

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

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

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

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

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    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 */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1579621970563-ebec7560ff3e?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.hero-overlay {
    background: rgba(0,0,0,0.5);
    width: 100%;
    padding: 4rem 2rem;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Container Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* Section Styles - Stacked with Alternating Backgrounds */
section {
    padding: 5rem 0;
}

section:nth-child(odd) {
    background: #ffffff;
}

section:nth-child(even) {
    background: #f8f9fa;
}

.intro-section {
    background: #ecf0f1;
    padding: 4rem 0;
}

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

.intro-section p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.problem-section {
    background: #ffffff;
    padding: 6rem 0;
}

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

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

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

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

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.problem-list {
    list-style: none;
    margin-top: 1.5rem;
}

.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: #e74c3c;
    font-weight: bold;
}

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

.insight-section {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    padding: 5rem 0;
    color: #ffffff;
}

.insight-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.insight-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

blockquote {
    border-left: 4px solid #f39c12;
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.2rem;
}

cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    opacity: 0.9;
}

.story-section {
    background: #f8f9fa;
    padding: 6rem 0;
}

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

.story-card {
    flex: 1;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-8px);
}

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

.story-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: #2c3e50;
}

.story-card p {
    padding: 0 1.5rem 1.5rem;
    color: #7f8c8d;
}

.trust-section {
    background: #ffffff;
    padding: 5rem 0;
}

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

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background: #ecf0f1;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.testimonial-author strong {
    color: #2c3e50;
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.benefits-section {
    background: #f8f9fa;
    padding: 6rem 0;
}

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

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

.benefit-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-item p {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.cta-mid-section {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    padding: 4rem 0;
    text-align: center;
    color: #ffffff;
}

.cta-mid-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-mid-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Services Section */
.services-preview {
    background: #ffffff;
    padding: 6rem 0;
}

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

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

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.service-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-color: #764ba2;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #f39c12;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.service-card.featured h3 {
    color: #ffffff;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1rem;
}

.service-card.featured .service-price {
    color: #f1c40f;
}

.service-desc {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
    flex-grow: 1;
}

.service-card.featured .service-desc {
    color: rgba(255,255,255,0.95);
}

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

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

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

.service-card.featured .service-features li::before {
    color: #f1c40f;
}

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

.btn-select-service:hover {
    background: #2980b9;
    transform: scale(1.02);
}

.service-card.featured .btn-select-service {
    background: #ffffff;
    color: #764ba2;
}

.service-card.featured .btn-select-service:hover {
    background: #f8f9fa;
}

.urgency-section {
    background: #2c3e50;
    padding: 4rem 0;
    color: #ffffff;
}

.urgency-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.urgency-section p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

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

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

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

.main-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.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 select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

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

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

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39,174,96,0.3);
}

/* CTA Buttons */
.cta-primary,
.cta-secondary,
.cta-final {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary {
    background: #f39c12;
    color: #ffffff;
}

.cta-primary:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243,156,18,0.3);
}

.cta-secondary {
    background: #3498db;
    color: #ffffff;
}

.cta-secondary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52,152,219,0.3);
}

.cta-final {
    background: #e74c3c;
    color: #ffffff;
}

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

.final-cta-section {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    padding: 5rem 0;
    text-align: center;
    color: #ffffff;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

.sticky-cta.show {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

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

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

.footer-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p {
    color: #bdc3c7;
    font-size: 0.95rem;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    padding: 4rem 0;
    text-align: center;
    color: #ffffff;
}

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

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

/* About Page */
.about-intro {
    padding: 5rem 0;
}

.mission-section {
    background: #ecf0f1;
    padding: 4rem 0;
}

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

.mission-section p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.values-section {
    padding: 6rem 0;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

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

.value-card p {
    color: #7f8c8d;
}

.team-section {
    background: #ecf0f1;
    padding: 6rem 0;
}

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

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

.team-member {
    flex: 1;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.team-member h3 {
    padding: 1.5rem 1rem 0.5rem;
    font-size: 1.4rem;
    color: #2c3e50;
}

.member-role {
    color: #3498db;
    font-weight: 600;
    padding: 0 1rem;
}

.team-member p {
    padding: 0.5rem 1rem 1.5rem;
    color: #7f8c8d;
}

.stats-section {
    padding: 5rem 0;
}

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

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

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
}

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

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

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

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

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.btn-primary {
    background: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52,152,219,0.3);
}

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

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

/* Services Page */
.services-detailed {
    padding: 4rem 0;
}

.service-detail {
    margin-bottom: 5rem;
}

.service-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.service-content.reverse {
    flex-direction: row-reverse;
}

.service-info {
    flex: 1.2;
}

.service-image {
    flex: 0.8;
}

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

.price-tag {
    display: inline-block;
    background: #27ae60;
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1rem 0;
}

.service-tagline {
    font-size: 1.2rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

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

.featured-service {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 3rem;
    background: #f39c12;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
}

.comparison-section {
    background: #ecf0f1;
    padding: 4rem 0;
}

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

.comparison-help {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.contact-info,
.contact-map {
    flex: 1;
}

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

.contact-info > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #7f8c8d;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-item p {
    color: #7f8c8d;
    line-height: 1.8;
}

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

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #ecf0f1;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

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

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #ffffff;
    padding: 1.5rem;
    text-align: center;
}

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

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

.faq-item {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

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

.faq-item p {
    color: #7f8c8d;
}

/* Thanks Page */
.thanks-section {
    padding: 6rem 0;
    min-height: 60vh;
}

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

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

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

.thanks-message {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.thanks-details {
    background: #ecf0f1;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.next-steps {
    margin: 3rem 0;
}

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

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

.step {
    flex: 1;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

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

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

.step p {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.thanks-cta {
    margin-top: 3rem;
}

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

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
    min-height: 60vh;
}

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

.update-date {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

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

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

.legal-page h4 {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #34495e;
}

.legal-page p {
    margin-bottom: 1rem;
    color: #7f8c8d;
    line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: #7f8c8d;
}

.legal-page ul li,
.legal-page ol li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

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

.legal-page a:hover {
    text-decoration: underline;
}

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

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

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

.cookie-table td {
    color: #7f8c8d;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
    }

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

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
    }

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

    .split-content,
    .service-content {
        flex-direction: column;
    }

    .split-content.reverse,
    .service-content.reverse {
        flex-direction: column;
    }

    .story-grid,
    .team-grid,
    .steps-grid {
        flex-direction: column;
    }

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

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

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

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2rem;
    }

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

    section {
        padding: 3rem 0;
    }

    .container,
    .container-narrow {
        padding: 0 1.5rem;
    }

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

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

    .main-form {
        padding: 2rem 1.5rem;
    }

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

    h2 {
        font-size: 1.8rem;
    }
}
