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

html {
    font-size: 16px;
    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 {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a5a8a;
}

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

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

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

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

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

/* Split-Screen Layout System */
.container-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    gap: 4rem;
    align-items: center;
}

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

.split-left,
.split-right,
.split-content {
    flex: 1;
}

.split-content img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

/* Hero Section */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.split-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.split-right {
    flex: 1;
    background-color: #34495e;
    position: relative;
    overflow: hidden;
}

.hero-image {
    background: linear-gradient(45deg, #2980b9 0%, #6c5ce7 100%);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    border-radius: 0;
    box-shadow: none;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Buttons */
.btn-cta,
.btn-primary,
.btn-outline,
.btn-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-cta,
.btn-primary,
.btn-submit {
    background-color: #2980b9;
    color: #ffffff;
}

.btn-cta:hover,
.btn-primary:hover,
.btn-submit:hover {
    background-color: #1a5a8a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(41, 128, 185, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #2980b9;
    border: 2px solid #2980b9;
}

.btn-outline:hover {
    background-color: #2980b9;
    color: #ffffff;
}

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

/* Trust Indicators */
.trust-indicators {
    background-color: #f8f9fa;
}

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

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2980b9;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #5a6c7d;
    font-weight: 500;
}

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

.text-content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #5a6c7d;
}

/* Services Section */
.services-intro {
    background-color: #ffffff;
}

.section-intro {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
}

.service-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #2980b9;
}

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

.service-card p {
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.price {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2980b9;
    margin-top: 0.5rem;
}

.sticky-image {
    position: sticky;
    top: 120px;
}

/* Process Section */
.process-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

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

.center-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #2c3e50;
}

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

.process-step {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

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

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

.process-step p {
    color: #5a6c7d;
    line-height: 1.6;
}

/* Testimonials */
.testimonial-split {
    background-color: #ffffff;
}

.testimonial-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #6c5ce7;
}

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

.testimonial-author {
    font-weight: 600;
    color: #5a6c7d;
}

/* Form Section */
.cta-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 2rem;
}

.checklist {
    list-style: none;
    margin-top: 2rem;
}

.checklist li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: #2c3e50;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2980b9;
    font-weight: 700;
    font-size: 1.3rem;
}

.main-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.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 #e0e0e0;
    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: #2980b9;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* Expertise Section */
.expertise-section {
    background-color: #f8f9fa;
}

/* Footer */
.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

.footer-column a {
    color: #bdc3c7;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #95a5a6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.cookie-actions button {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
}

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

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

.header-subtitle {
    font-size: 1.2rem;
    color: #5a6c7d;
}

/* Services Detail */
.services-detail {
    padding: 4rem 2rem;
}

.services-detail.alt-bg {
    background-color: #f8f9fa;
}

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

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

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

.feature-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: #2c3e50;
}

.feature-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #2980b9;
    font-weight: 700;
}

.price-display {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-label {
    font-size: 1.1rem;
    color: #5a6c7d;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #2980b9;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2980b9 0%, #6c5ce7 100%);
    padding: 5rem 2rem;
    color: #ffffff;
}

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

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

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-cta {
    background-color: #ffffff;
    color: #2980b9;
}

.cta-section .btn-cta:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

/* About Page */
.about-intro,
.mission-section,
.expertise-detail,
.timeline-section {
    padding: 4rem 2rem;
}

.mission-section,
.timeline-section {
    background-color: #f8f9fa;
}

.values-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.value-card {
    flex: 1;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-top: 4px solid #2980b9;
}

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

.value-card p {
    color: #5a6c7d;
    line-height: 1.6;
}

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

.expertise-list li {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.expertise-list strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 0.3rem;
}

/* Timeline */
.timeline {
    position: relative;
    margin-top: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #2980b9;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 1;
    text-align: right;
    font-size: 2rem;
    font-weight: 700;
    color: #2980b9;
    padding-top: 0.5rem;
}

.timeline-item:nth-child(even) .timeline-year {
    text-align: left;
}

.timeline-content {
    flex: 1;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.timeline-content p {
    color: #5a6c7d;
}

/* Contact Page */
.contact-main {
    padding: 4rem 2rem;
}

.contact-info-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

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

.info-item {
    margin-bottom: 1.5rem;
}

.info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-size: 1.05rem;
}

.info-item p {
    color: #5a6c7d;
    line-height: 1.6;
}

.info-item a {
    color: #2980b9;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #e3f2fd;
    border-left: 4px solid #2980b9;
    border-radius: 4px;
}

.contact-form-wrapper {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.form-intro {
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.map-section {
    padding: 4rem 2rem;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e0e0e0;
    border-radius: 8px;
    margin-bottom: 2rem;
    overflow: hidden;
}

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

.location-info {
    margin-top: 2rem;
}

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

.location-info p {
    margin-bottom: 1rem;
    color: #5a6c7d;
}

/* Thanks Page */
.thanks-section {
    padding: 5rem 2rem;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
}

.thanks-details {
    margin: 2rem auto;
}

.submission-info {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    display: inline-block;
    text-align: left;
}

.submission-info p {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.next-steps {
    margin: 3rem auto;
    max-width: 900px;
}

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

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

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

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

.step p {
    color: #5a6c7d;
    line-height: 1.6;
}

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

.contact-reminder {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-reminder p {
    margin-bottom: 0.5rem;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

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

.last-updated {
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-style: italic;
}

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

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

.legal-page p {
    margin-bottom: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-page ul li {
    margin-bottom: 0.6rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

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

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

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

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

.cookie-table td {
    color: #5a6c7d;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container-split {
        flex-direction: column;
        gap: 3rem;
        padding: 3rem 1.5rem;
    }

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

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .split-left,
    .split-right {
        min-height: 50vh;
    }

    .process-grid,
    .values-grid {
        flex-direction: column;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-left: 60px;
    }

    .timeline-year {
        position: absolute;
        left: 0;
        top: 0;
        width: 60px;
        text-align: center;
    }

    .timeline-item:nth-child(even) .timeline-year {
        text-align: center;
    }

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

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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

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

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

    .stat-number {
        font-size: 2.5rem;
    }

    .text-content h2 {
        font-size: 1.8rem;
    }

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