/* 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-color: #ffffff;
}

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

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

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

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a73e8;
}

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

.header-right a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.header-right a:hover {
    color: #1a73e8;
}

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background-color: #f5f5f5;
    border-radius: 4px;
    margin-right: 1rem;
}

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

.hero-image {
    flex: 1;
    background-color: #e8eaed;
    overflow: hidden;
}

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

.hero-content {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

/* Split Sections */
.split-section {
    display: flex;
    min-height: 500px;
}

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

.split-content {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.split-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.split-image {
    flex: 1;
    background-color: #e8eaed;
    overflow: hidden;
}

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

/* Buttons and CTAs */
.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a73e8;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #1557b0;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #f1f3f4;
    color: #2c3e50;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #e0e0e0;
}

.link-inline {
    display: inline-block;
    color: #1a73e8;
    font-weight: 600;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.link-inline:hover {
    color: #1557b0;
}

/* Services Grid */
.services-grid {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.services-grid h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.service-card {
    flex: 1 1 300px;
    max-width: 380px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

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

.service-card h3 {
    font-size: 1.4rem;
    padding: 1.5rem 1.5rem 0.5rem;
    color: #1a1a1a;
}

.service-card p {
    font-size: 0.95rem;
    padding: 0 1.5rem 1rem;
    color: #666;
    line-height: 1.6;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a73e8;
    padding: 0 1.5rem 1rem;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background-color: #1a73e8;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #1557b0;
}

/* Services Detailed */
.services-detailed {
    padding: 3rem 5%;
}

.service-detail-item {
    display: flex;
    margin-bottom: 4rem;
    min-height: 450px;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

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

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

.service-detail-content ul {
    list-style-position: inside;
    margin: 1.5rem 0;
    color: #555;
}

.service-detail-content li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a73e8;
    margin: 1.5rem 0;
}

.service-detail-image {
    flex: 1;
    background-color: #e8eaed;
    overflow: hidden;
}

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

/* Form Section */
.form-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-container > p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a73e8;
}

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.btn-submit {
    padding: 1.1rem;
    background-color: #1a73e8;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

/* Values Section */
.values-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

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

.value-item {
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
}

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

.value-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 5rem 5%;
    background-color: #1a73e8;
    text-align: center;
    color: #ffffff;
}

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

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

.cta-section .cta-primary {
    background-color: #ffffff;
    color: #1a73e8;
}

.cta-section .cta-primary:hover {
    background-color: #f1f3f4;
}

/* Page Hero */
.page-hero {
    padding: 5rem 5%;
    background-color: #f8f9fa;
    text-align: center;
}

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

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

/* Contact Split */
.contact-split {
    display: flex;
    min-height: 500px;
}

.contact-info-block {
    flex: 1;
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.contact-info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

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

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

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

.contact-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-left: 4px solid #1a73e8;
    border-radius: 4px;
}

.contact-note p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #e8eaed;
    overflow: hidden;
}

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

/* Thanks Section */
.thanks-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
    min-height: 70vh;
}

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

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a73e8;
}

.thanks-container > p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
}

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

.service-confirmation-box {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-confirmation-box h3 {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.service-name {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a73e8;
}

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

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    text-align: left;
}

.step-item {
    flex: 1 1 250px;
    max-width: 300px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.step-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

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

/* Legal Page */
.legal-page {
    padding: 3rem 5%;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.last-updated {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 2.5rem;
}

.legal-container h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

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

.legal-container ul {
    list-style-position: inside;
    margin: 1rem 0;
    color: #555;
}

.legal-container li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-container a {
    color: #1a73e8;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #1557b0;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 5%;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1 1 220px;
}

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

.footer-column p,
.footer-column a {
    font-size: 0.9rem;
    color: #ccc;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.6;
    max-width: 800px;
    margin: 1rem auto 0;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: #1a73e8;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #1a73e8;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1557b0;
}

.btn-reject {
    background-color: #f1f3f4;
    color: #2c3e50;
}

.btn-reject:hover {
    background-color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-split,
    .split-section,
    .service-detail-item,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-content,
    .split-content,
    .service-detail-content,
    .contact-info-block {
        padding: 3rem 5%;
    }

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

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

    .header-right {
        gap: 1rem;
    }

    .header-right a {
        font-size: 0.85rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

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

    .services-grid h2,
    .values-section h2,
    .cta-section h2 {
        font-size: 2rem;
    }

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

    .thanks-container h1 {
        font-size: 2rem;
    }
}