* {
    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: #1a1a1a;
    background: #ffffff;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

.main-nav a:hover {
    color: #2c5f7c;
}

.ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

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

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

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

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c5f7c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-hero:hover {
    background: #1f4559;
}

.hero-right {
    flex: 1;
    position: relative;
    background: #d8e3e8;
}

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

.intro-section {
    padding: 6rem 4rem;
}

.intro-container {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-image {
    flex: 1;
    background: #e8ecef;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.services-split {
    padding: 6rem 4rem;
    background: #fafafa;
}

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

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

.section-header-centered p {
    font-size: 1.2rem;
    color: #666;
}

.service-row {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-image {
    flex: 1;
    background: #d8e3e8;
}

.service-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    display: block;
}

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

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f7c;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.9rem 2rem;
    background: #2c5f7c;
    color: #ffffff;
    border: none;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #1f4559;
}

.form-section {
    padding: 6rem 4rem;
    background: #ffffff;
}

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

.form-left {
    flex: 1;
    padding-right: 2rem;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.form-left p {
    font-size: 1.1rem;
    color: #4a4a4a;
}

.form-right {
    flex: 1;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background: #2c5f7c;
    color: #ffffff;
    border: none;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.3s;
    align-self: flex-start;
}

.btn-submit:hover {
    background: #1f4559;
}

.trust-section {
    padding: 6rem 4rem;
    background: #2c5f7c;
    color: #ffffff;
}

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

.trust-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    font-size: 0.95rem;
}

.footer-split {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 4rem 1.5rem;
}

.footer-main {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.footer-column a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
    color: #888;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.disclaimer-footer {
    font-size: 0.85rem;
    color: #777;
    margin-top: 1rem;
}

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

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

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

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

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    background: #2c5f7c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-cookie:hover {
    background: #1f4559;
}

.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cookie-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.about-hero {
    padding: 8rem 4rem 4rem;
    background: #f8f9fa;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-content p {
    font-size: 1.3rem;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
}

.about-story-split {
    padding: 6rem 4rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.story-left {
    flex: 1;
    background: #d8e3e8;
}

.story-left img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

.story-right {
    flex: 1;
}

.story-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-right p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
}

.values-section {
    padding: 6rem 4rem;
    background: #fafafa;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.value-card p {
    font-size: 1.05rem;
    color: #4a4a4a;
}

.team-section-split {
    padding: 6rem 4rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.team-content {
    flex: 1;
}

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

.team-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
}

.team-image {
    flex: 1;
    background: #d8e3e8;
}

.team-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

.approach-section {
    padding: 6rem 4rem;
    background: #2c5f7c;
    color: #ffffff;
}

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

.approach-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.approach-container p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.services-hero {
    padding: 6rem 4rem 3rem;
    text-align: center;
    background: #f8f9fa;
}

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

.services-hero p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

.services-detail-section {
    padding: 4rem 4rem 6rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-detail-image {
    flex: 1;
    background: #d8e3e8;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
}

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

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

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.price-detail {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c5f7c;
    margin: 1.5rem 0;
}

.btn-service-detail {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #2c5f7c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

.btn-service-detail:hover {
    background: #1f4559;
}

.cta-section-services {
    padding: 5rem 4rem;
    background: #fafafa;
}

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

.cta-content-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-content-center p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #2c5f7c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: background 0.3s;
}

.btn-cta-large:hover {
    background: #1f4559;
}

.contact-hero {
    padding: 6rem 4rem 3rem;
    text-align: center;
    background: #f8f9fa;
}

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

.contact-hero p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

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

.contact-info-block {
    flex: 1;
}

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

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c5f7c;
}

.contact-item p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.contact-image-block {
    flex: 1;
    background: #d8e3e8;
}

.contact-image-block img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
}

.thanks-section {
    padding: 8rem 4rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #2c5f7c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

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

.thanks-container p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.service-selected {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    margin: 1.5rem 0;
    font-weight: 600;
    color: #2c5f7c;
}

.btn-back-home {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c5f7c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 1rem;
    transition: background 0.3s;
}

.btn-back-home:hover {
    background: #1f4559;
}

.legal-content {
    padding: 4rem 4rem 6rem;
}

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

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

.legal-updated {
    color: #888;
    margin-bottom: 3rem;
    font-style: italic;
}

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

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.legal-container p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
    color: #4a4a4a;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .hero-split,
    .service-row,
    .service-row.reverse,
    .form-container-split,
    .intro-container,
    .about-story-split,
    .team-section-split,
    .service-detail-card,
    .service-detail-card.reverse,
    .contact-split-section {
        flex-direction: column;
    }

    .header-split {
        padding: 1rem 2rem;
    }

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

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

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

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

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

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

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