/* 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.6;
    color: #2c3e50;
    background: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 24px;
    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: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.cookie-buttons {
    display: flex;
    gap: 12px;
}

/* Header - Split Layout */
.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background: #ffffff;
    border-bottom: 1px solid #e8ecef;
}

.header-left {
    flex: 0 0 auto;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav {
    display: flex;
    gap: 28px;
}

.main-nav a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.2s;
}

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

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 6px 12px;
    background: #ecf0f1;
    border-radius: 4px;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 600px;
    background: #f8f9fa;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a252f;
}

.hero-left p {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    background-color: #37474f;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.btn-hero {
    display: inline-block;
    padding: 16px 32px;
    background: #3498db;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

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

/* Page Hero Split */
.page-hero-split {
    display: flex;
    min-height: 400px;
    background: #f8f9fa;
}

.page-hero-split .hero-left {
    padding: 60px 60px;
}

.page-hero-split .hero-left h1 {
    font-size: 42px;
}

/* Intro Section */
.intro-section {
    padding: 80px 48px;
    background: #ffffff;
}

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

.intro-narrow h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

.intro-narrow p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.8;
}

/* Why Mobile Split */
.why-mobile-split {
    display: flex;
}

.why-left {
    flex: 1;
    background-color: #455a64;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.why-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-right {
    flex: 1;
    padding: 80px 60px;
    background: #ecf0f1;
}

.why-right h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a252f;
}

.why-right p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Services Grid */
.services-grid {
    padding: 80px 48px;
    background: #ffffff;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 40px;
    margin-bottom: 12px;
    color: #1a252f;
}

.services-header p {
    font-size: 18px;
    color: #7f8c8d;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 320px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #b0bec5;
}

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

.service-card h4 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #1a252f;
}

.service-card p {
    font-size: 15px;
    color: #546e7a;
    margin: 0 24px 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    margin: 0 24px 20px;
}

.btn-service {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 12px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

/* Process Split */
.process-split {
    display: flex;
    background: #f8f9fa;
}

.process-left {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
}

.process-left h3 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a252f;
}

.process-step {
    margin-bottom: 32px;
}

.process-step h5 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.process-step p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
}

.process-right {
    flex: 1;
    background-color: #546e7a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.process-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Form Section */
.form-section {
    padding: 80px 48px;
    background: #ecf0f1;
}

.form-container-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.form-left {
    flex: 1;
    padding: 60px;
    background: #2c3e50;
    color: #ffffff;
}

.form-left h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.form-left p {
    font-size: 17px;
    line-height: 1.6;
    opacity: 0.9;
}

.form-right {
    flex: 1;
    padding: 60px;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-form input,
.main-form select,
.main-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 16px 32px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background: #3498db;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    background: transparent;
    color: #3498db;
    font-weight: 600;
    border: 2px solid #3498db;
    border-radius: 6px;
    transition: all 0.3s;
}

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

/* Story Section */
.story-section {
    padding: 80px 48px;
    background: #ffffff;
}

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

.story-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a252f;
}

.story-content p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 24px;
    line-height: 1.8;
}

/* Values Split */
.values-split {
    display: flex;
}

.values-left {
    flex: 1;
    background-color: #607d8b;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.values-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-right {
    flex: 1;
    padding: 80px 60px;
    background: #f8f9fa;
}

.values-right h3 {
    font-size: 34px;
    margin-bottom: 36px;
    color: #1a252f;
}

.value-item {
    margin-bottom: 28px;
}

.value-item h5 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.value-item p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
}

/* Expertise Section */
.expertise-section {
    padding: 80px 48px;
    background: #ffffff;
}

.expertise-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 48px;
    color: #1a252f;
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-item {
    flex: 1 1 calc(50% - 32px);
    min-width: 280px;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 8px;
}

.expertise-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.expertise-item p {
    font-size: 16px;
    color: #7f8c8d;
}

/* Team Split */
.team-split {
    display: flex;
}

.team-left {
    flex: 1;
    padding: 80px 60px;
    background: #ecf0f1;
}

.team-left h3 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1a252f;
}

.team-left p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.team-right {
    flex: 1;
    background-color: #78909c;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Detailed */
.services-detailed {
    padding: 40px 0;
    background: #ffffff;
}

.service-detail-split {
    display: flex;
    margin-bottom: 60px;
}

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

.service-detail-left {
    flex: 1;
    padding: 60px;
}

.service-detail-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a252f;
}

.service-detail-left p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    font-size: 16px;
    color: #546e7a;
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
}

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

.service-price-detail {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 24px;
}

.service-detail-right {
    flex: 1;
    background-color: #90a4ae;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.service-detail-split.reverse .service-detail-left {
    background: #f8f9fa;
}

/* Contact Info Split */
.contact-info-split {
    display: flex;
    padding: 60px 0;
}

.contact-left {
    flex: 1;
    padding: 60px;
    background: #ffffff;
}

.contact-left h2 {
    font-size: 36px;
    margin-bottom: 36px;
    color: #1a252f;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.6;
}

.contact-right {
    flex: 1;
    background-color: #78909c;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Location Section */
.location-section {
    padding: 60px 48px;
    background: #f8f9fa;
}

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

.location-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.location-content p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.7;
}

/* Thanks Section */
.thanks-section {
    padding: 120px 48px;
    background: #f8f9fa;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a252f;
}

.thanks-content p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-service {
    padding: 20px;
    margin: 28px 0;
    background: #ffffff;
    border-radius: 8px;
    font-size: 17px;
    color: #2c3e50;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 36px;
}

/* Legal Page */
.legal-page {
    padding: 60px 48px;
    background: #ffffff;
}

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

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a252f;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 32px;
}

.legal-content li {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 8px;
    line-height: 1.6;
}

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

/* Footer */
.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 48px 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-column p,
.footer-column a {
    font-size: 15px;
    color: #bdc3c7;
    line-height: 1.8;
    display: block;
    margin-bottom: 8px;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-split,
    .why-mobile-split,
    .process-split,
    .values-split,
    .team-split,
    .service-detail-split,
    .contact-info-split,
    .form-container-split {
        flex-direction: column;
    }

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

    .hero-left,
    .process-left,
    .values-right,
    .team-left,
    .service-detail-left,
    .contact-left,
    .form-left,
    .form-right {
        padding: 48px 32px;
    }

    .hero-right,
    .process-right,
    .values-left,
    .team-right,
    .service-detail-right,
    .contact-right {
        min-height: 400px;
    }

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

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .header-right {
        flex-direction: column;
        gap: 16px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-left h1,
    .page-hero-split .hero-left h1 {
        font-size: 32px;
    }

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

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

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