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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7e;
    --accent-color: #f4a261;
    --text-dark: #2b2d42;
    --text-light: #8d99ae;
    --bg-light: #f8f9fa;
    --bg-dark: #2b2d42;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.ad-notice {
    background-color: var(--bg-light);
    color: var(--text-light);
    text-align: center;
    padding: 8px;
    font-size: 12px;
    border-bottom: 1px solid var(--border-color);
}

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 30px;
}

.nav-right a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: var(--accent-color);
}

.hero-split {
    display: flex;
    min-height: 500px;
    background-color: var(--bg-light);
}

.hero-left {
    flex: 1;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.hero-right {
    flex: 1;
    background-color: var(--secondary-color);
    position: relative;
}

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

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #e76f51;
    cursor: pointer;
}

.intro-asymmetric {
    display: flex;
    gap: 60px;
    padding: 100px 5%;
    background-color: var(--white);
}

.intro-content {
    flex: 1.5;
}

.intro-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.intro-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-visual {
    flex: 1;
    background-color: var(--bg-light);
}

.intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-preview {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-centered h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-header-centered p {
    font-size: 18px;
    color: var(--text-light);
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    gap: 40px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.service-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-info p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-info .price {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 10px;
}

.select-service {
    margin-top: 20px;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: var(--secondary-color);
}

.contact-form-split {
    display: flex;
    gap: 60px;
    padding: 80px 5%;
    background-color: var(--white);
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-left p {
    font-size: 17px;
    line-height: 1.7;
}

.form-right {
    flex: 1;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#contactForm input,
#contactForm select,
#contactForm textarea {
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    padding: 15px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.insights-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

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

.insights-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.insights-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.insights-content a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.insights-content a:hover {
    text-decoration: underline;
}

.trust-indicators {
    padding: 60px 5%;
    background-color: var(--primary-color);
    color: var(--white);
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    text-align: center;
}

.trust-item h3 {
    font-size: 48px;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.trust-item p {
    font-size: 16px;
    opacity: 0.9;
}

.footer-split {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 60px 5% 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section .references {
    list-style-position: inside;
    font-size: 14px;
}

.footer-section .references li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom .disclaimer {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: var(--accent-color);
    color: var(--white);
}

.cookie-accept:hover {
    background-color: #e76f51;
}

.cookie-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.cookie-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.about-hero-split {
    display: flex;
    min-height: 500px;
}

.about-left {
    flex: 1;
    background-color: var(--bg-light);
}

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

.about-right {
    flex: 1;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white);
}

.about-right h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-right p {
    font-size: 18px;
    line-height: 1.7;
}

.story-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

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

.story-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.story-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-split {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 80px 5%;
    background-color: var(--white);
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
}

.team-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.team-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.team-section p {
    font-size: 17px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-visual {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
}

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

.approach-section {
    padding: 80px 5%;
    background-color: var(--white);
}

.approach-section h2 {
    font-size: 32px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.approach-grid {
    display: flex;
    gap: 30px;
}

.approach-step {
    flex: 1;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.approach-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.approach-step p {
    font-size: 16px;
    line-height: 1.7;
}

.services-header {
    padding: 80px 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.services-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.services-header p {
    font-size: 18px;
    color: var(--text-light);
}

.service-detailed {
    display: flex;
    gap: 60px;
    padding: 80px 5%;
    background-color: var(--white);
}

.service-detailed.reverse {
    flex-direction: row-reverse;
    background-color: var(--bg-light);
}

.service-detail-left {
    flex: 1;
    background-color: var(--bg-light);
}

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

.service-detail-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-right h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-detail-right h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-detail-right p {
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-detail-right ul {
    margin: 15px 0 20px 20px;
}

.service-detail-right ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 20px;
    margin-bottom: 20px;
}

.contact-header {
    padding: 80px 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-header p {
    font-size: 18px;
    color: var(--text-light);
}

.contact-split-layout {
    display: flex;
    gap: 60px;
    padding: 80px 5%;
    background-color: var(--white);
}

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

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
}

.email-display {
    color: var(--text-dark);
    font-weight: 600;
}

.contact-visual-block {
    flex: 1;
    background-color: var(--bg-light);
}

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

.location-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.location-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.location-section p {
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.thanks-section {
    display: flex;
    gap: 60px;
    padding: 100px 5%;
    background-color: var(--bg-light);
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.thanks-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

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

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
}

.thanks-visual {
    flex: 1;
    background-color: var(--white);
}

.thanks-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.next-steps {
    padding: 80px 5%;
    background-color: var(--white);
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    gap: 40px;
}

.step-item {
    flex: 1;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
}

.legal-content {
    padding: 80px 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin: 15px 0 20px 30px;
}

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-asymmetric,
    .contact-form-split,
    .service-card,
    .about-hero-split,
    .service-detailed,
    .contact-split-layout,
    .thanks-section {
        flex-direction: column;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .trust-grid,
    .footer-content,
    .values-split,
    .approach-grid,
    .steps-grid {
        flex-direction: column;
    }

    .nav-right {
        gap: 15px;
    }

    .hero-left h1,
    .about-right h1,
    .thanks-content h1,
    .services-header h1,
    .contact-header h1 {
        font-size: 32px;
    }

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