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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

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-color: #1a2332;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

/* Header - Split Layout */
.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e8eef3;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-notice {
    font-size: 0.8rem;
    color: #7f8c8d;
    padding: 0.4rem 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

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

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #34495e;
    position: relative;
}

.main-nav a:hover {
    color: #3498db;
}

/* Hero - Split Screen */
.hero-split {
    display: flex;
    height: 85vh;
    min-height: 600px;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.15), rgba(41, 128, 185, 0.25));
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #f8fafb;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #1a2332;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Split Layouts */
.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 5rem 0;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.2rem;
    color: #1a2332;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.split-text p {
    font-size: 1.05rem;
    color: #546e7a;
    margin-bottom: 1.2rem;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
}

/* Intro Section */
.intro-section {
    background-color: #ffffff;
}

/* Services Grid */
.services-highlight {
    padding: 6rem 0;
    background-color: #f8fafb;
}

.services-highlight h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a2332;
    margin-bottom: 3.5rem;
    font-weight: 700;
}

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

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background-color: #ffffff;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

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

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.5rem;
    color: #1a2332;
    margin-bottom: 1rem;
}

.service-info p {
    font-size: 1rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

.service-price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #3498db;
}

/* Philosophy Section */
.philosophy-section {
    background-color: #ffffff;
}

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

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

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

.cta-button-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #3498db;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 0;
    background-color: #f8fafb;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a2332;
    margin-bottom: 3rem;
}

.testimonials-layout {
    display: flex;
    gap: 3rem;
}

.testimonial {
    flex: 1;
    padding: 2.5rem;
    background-color: #ffffff;
}

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

.testimonial cite {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 600;
}

/* Footer */
.main-footer {
    background-color: #1a2332;
    color: #ecf0f1;
    padding: 4rem 0 2rem;
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

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

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

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

.footer-col ul li a {
    color: #bdc3c7;
    font-size: 0.95rem;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.85rem !important;
    font-style: italic;
    opacity: 0.8;
}

/* Page Hero */
.page-hero {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, #ecf0f1 0%, #d5dbdd 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: #1a2332;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.2rem;
    color: #546e7a;
}

/* About Page */
.about-intro {
    background-color: #ffffff;
}

.values-section {
    padding: 6rem 0;
    background-color: #f8fafb;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a2332;
    margin-bottom: 3.5rem;
}

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

.value-item {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
}

.value-item h3 {
    font-size: 1.4rem;
    color: #1a2332;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

.method-section {
    background-color: #ffffff;
}

.expertise-section {
    padding: 6rem 0;
    background-color: #f8fafb;
}

.expertise-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a2332;
    margin-bottom: 3.5rem;
}

.expertise-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.expertise-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #3498db;
}

.expertise-item h3 {
    font-size: 1.3rem;
    color: #1a2332;
    margin-bottom: 0.8rem;
}

.expertise-item p {
    font-size: 1rem;
    color: #546e7a;
}

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

.service-detail-card {
    display: flex;
    align-items: stretch;
    gap: 3rem;
    margin-bottom: 4rem;
    background-color: #ffffff;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.service-detail-content p {
    font-size: 1.05rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #34495e;
    font-size: 1rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e8eef3;
}

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

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

.select-service:hover {
    background-color: #2980b9;
}

.service-detail-image {
    flex: 1;
    min-height: 400px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background-color: #f8fafb;
}

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

.contact-form-section > p {
    text-align: center;
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 3rem;
}

.service-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid #bdc3c7;
    background-color: #ffffff;
    font-family: inherit;
}

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

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #2980b9;
}

/* Contact Page */
.contact-page-content {
    background-color: #ffffff;
}

.contact-info-section {
    flex: 1;
    padding: 3rem;
}

.contact-info-section h2 {
    font-size: 2.2rem;
    color: #1a2332;
    margin-bottom: 2rem;
}

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

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

.contact-item h3 {
    font-size: 1.2rem;
    color: #1a2332;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.8;
}

.contact-note {
    padding: 1.5rem;
    background-color: #ecf0f1;
    border-left: 3px solid #3498db;
}

.contact-note p {
    font-size: 0.95rem;
    color: #34495e;
    line-height: 1.7;
}

.contact-image-section {
    flex: 1;
}

.contact-image-section img {
    width: 100%;
    height: 100%;
}

.approach-section {
    padding: 6rem 0;
    background-color: #f8fafb;
}

.approach-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a2332;
    margin-bottom: 3.5rem;
}

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

.approach-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
}

.approach-item h3 {
    font-size: 1.3rem;
    color: #1a2332;
    margin-bottom: 1rem;
}

.approach-item p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

.location-section {
    background-color: #ffffff;
}

.location-image {
    flex: 1;
}

.location-image img {
    width: 100%;
    height: 100%;
}

.location-text {
    flex: 1;
    padding: 3rem;
}

.location-text h2 {
    font-size: 2.2rem;
    color: #1a2332;
    margin-bottom: 1.5rem;
}

.location-text p {
    font-size: 1.05rem;
    color: #546e7a;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-section {
    padding: 6rem 0;
    background-color: #f8fafb;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 4rem;
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

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

.thanks-next-steps {
    text-align: left;
    margin: 3rem 0;
    padding: 2rem;
    background-color: #ecf0f1;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    color: #1a2332;
    margin-bottom: 1.5rem;
}

.thanks-next-steps ol {
    list-style: decimal;
    padding-left: 1.5rem;
}

.thanks-next-steps ol li {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

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

.legal-page h1 {
    font-size: 2.8rem;
    color: #1a2332;
    margin-bottom: 0.5rem;
}

.legal-intro {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: #1a2332;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

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

.legal-page p {
    font-size: 1.05rem;
    color: #546e7a;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-page ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page ul li {
    font-size: 1.05rem;
    color: #546e7a;
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

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

.legal-page a:hover {
    color: #2980b9;
}

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

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

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

    .hero-content {
        padding: 3rem 2rem;
    }

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

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        gap: 2rem;
        padding: 3rem 0;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .testimonials-layout {
        flex-direction: column;
    }

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

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

    .service-detail-image {
        min-height: 300px;
    }

    .service-pricing {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .values-grid,
    .expertise-list,
    .approach-grid {
        flex-direction: column;
    }

    .container-fluid {
        padding: 0 1.5rem;
    }

    .thanks-content {
        padding: 2rem;
    }

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