* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.main-header {
    background-color: #1a2332;
    padding: 1.2rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.5px;
}

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

.main-nav a {
    color: #e8eaed;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #4a9eff;
}

.ad-disclosure {
    color: #95a5b8;
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 4px;
    border-left: 3px solid #f39c12;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a2332;
    font-weight: 700;
}

.hero-left p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #d4dce5;
}

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

.split-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.split-image-left {
    flex: 1;
    position: relative;
    background-color: #c8d3dd;
}

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

.split-content-right {
    flex: 1;
    padding: 4rem 4rem 4rem 3rem;
    background-color: #ffffff;
}

.split-content-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
    line-height: 1.2;
}

.split-content-right p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

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

.feature-list li {
    padding: 0.8rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1.05rem;
    color: #4a5568;
}

.feature-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4a9eff;
    font-weight: bold;
}

.split-section-reverse {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.split-content-left {
    flex: 1;
    padding: 4rem 3rem 4rem 4rem;
    background-color: #f0f4f8;
}

.split-content-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
    line-height: 1.2;
}

.split-content-left p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.split-image-right {
    flex: 1;
    position: relative;
    background-color: #c8d3dd;
}

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

.services-preview {
    padding: 5rem 2rem;
    background-color: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header-center {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header-center h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.section-header-center p {
    font-size: 1.15rem;
    color: #718096;
}

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(33.333% - 1.5rem);
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #d4dce5;
}

.service-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 0.8rem;
    color: #1a2332;
}

.service-card p {
    font-size: 0.95rem;
    color: #4a5568;
    margin: 0 1.5rem 1rem;
    line-height: 1.5;
}

.price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c7a7b;
    margin: 1rem 1.5rem;
}

.btn-select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.8rem;
    background-color: #4a9eff;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #3a8ee6;
}

.btn-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #4a9eff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1.05rem;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #3a8ee6;
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #718096;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1.05rem;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #5a6c7d;
}

.contact-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

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

.contact-info p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-form-container {
    flex: 1;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #cbd5e0;
    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: #4a9eff;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #4a9eff;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #3a8ee6;
}

.main-footer {
    background-color: #1a2332;
    color: #e8eaed;
    padding: 3rem 2rem 1rem;
}

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

.footer-column {
    flex: 1;
}

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

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

.footer-column p {
    color: #95a5b8;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-column a {
    display: block;
    color: #95a5b8;
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #95a5b8;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 1.5rem;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2332;
    padding: 1.5rem 2rem;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-content p {
    color: #e8eaed;
    font-size: 0.95rem;
    flex: 1;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie-accept {
    background-color: #4a9eff;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #3a8ee6;
}

.btn-cookie-reject {
    background-color: #718096;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background-color: #5a6c7d;
}

.page-hero {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f0f4f8;
    margin-bottom: 2rem;
}

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

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

.values-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-header h2 {
    font-size: 2.8rem;
    color: #1a2332;
}

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

.value-item {
    flex: 0 1 calc(50% - 1.5rem);
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.value-item p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.cta-section {
    padding: 5rem 2rem;
    text-align: center;
    background-color: #1a2332;
    color: #ffffff;
}

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

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #e8eaed;
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 2rem auto;
    background-color: #ffffff;
}

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

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

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

.service-price-tag {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c7a7b;
    margin: 2rem 0 1.5rem;
}

.service-detail-image {
    flex: 1;
    position: relative;
    background-color: #d4dce5;
}

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

.service-detail-split-reverse {
    display: flex;
    max-width: 1400px;
    margin: 2rem auto;
    background-color: #f8f9fa;
}

.services-process {
    padding: 5rem 2rem;
    background-color: #f0f4f8;
    max-width: 1400px;
    margin: 0 auto;
}

.services-process h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a2332;
}

.process-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.process-step {
    flex: 0 1 calc(25% - 1.5rem);
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #4a9eff;
    margin-bottom: 1rem;
}

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

.process-step p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
}

.contact-page-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    gap: 4rem;
}

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

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

.contact-info-block {
    margin-bottom: 2.5rem;
}

.contact-info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a2332;
}

.contact-info-block p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #d4dce5;
    border-radius: 8px;
    overflow: hidden;
}

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

.additional-contact-info {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

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

.expectations-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
}

.expectation-item {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

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

.expectation-item p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

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

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

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

.legal-page p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

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

.legal-page li {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.thanks-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.thanks-details {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

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

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

@media (max-width: 768px) {
    .hero-split,
    .split-section,
    .split-section-reverse,
    .contact-split,
    .service-detail-split,
    .service-detail-split-reverse,
    .contact-page-split {
        flex-direction: column;
    }

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

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

    .value-item,
    .expectation-item {
        flex: 0 1 100%;
    }

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

    .process-step {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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