* {
    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;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e9f0;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.2rem 0;
}

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

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

.ad-label {
    font-size: 0.75rem;
    color: #7f8c9a;
    padding: 0.3rem 0.8rem;
    background-color: #f4f6f8;
    border-radius: 4px;
    margin-left: auto;
    margin-right: 2rem;
}

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

.nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #3b7cbf;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

.hero-left h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.hero-left p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.btn-primary {
    display: inline-block;
    background-color: #3b7cbf;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #e8eef3;
    color: #2c3e50;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.container-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.value-proposition {
    background-color: #ffffff;
}

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.content-block {
    flex: 1;
}

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

.content-block p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.content-block ul {
    list-style: none;
    padding-left: 0;
}

.content-block ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.content-block ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3b7cbf;
    font-weight: bold;
}

.content-image {
    flex: 1;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.insight-section {
    background-color: #f8fafc;
    padding: 5rem 0;
}

.insight-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a2332;
    text-align: center;
}

.insight-section p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.image-focus {
    margin: 0;
    padding: 0;
}

.full-width-image {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.overlay-text {
    background-color: rgba(255, 255, 255, 0.92);
    padding: 3rem;
    max-width: 700px;
    text-align: center;
}

.overlay-text h3 {
    font-size: 2rem;
    color: #1a2332;
}

.services-grid {
    background-color: #ffffff;
}

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

.grid-three {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.grid-two {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.service-card {
    background-color: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 250px;
}

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

.service-card p {
    margin: 0 1.5rem 1.5rem;
    color: #5a6c7d;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3b7cbf;
    margin: 1rem 1.5rem;
}

.btn-select {
    background-color: #3b7cbf;
    color: #ffffff;
    border: none;
    padding: 0.9rem 2rem;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1rem;
}

.btn-select:hover {
    background-color: #2d5f96;
}

.testimonials-inline {
    background-color: #1a2332;
    color: #ffffff;
    padding: 5rem 0;
}

.testimonial-row {
    display: flex;
    gap: 4rem;
}

.testimonial {
    flex: 1;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial cite {
    font-style: normal;
    color: #a8b8c7;
    font-size: 0.95rem;
}

.form-section {
    background-color: #f8fafc;
    padding: 5rem 0;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

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

.form-intro p {
    font-size: 1.1rem;
    color: #5a6c7d;
}

.contact-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d4dfe8;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b7cbf;
}

.btn-submit {
    background-color: #3b7cbf;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    width: 100%;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1.1rem;
}

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

.disclaimer-section {
    background-color: #f4f6f8;
    padding: 3rem 0;
}

.disclaimer {
    font-size: 0.9rem;
    color: #7f8c9a;
    line-height: 1.6;
    text-align: center;
}

.footer {
    background-color: #1a2332;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    color: #a8b8c7;
    margin-bottom: 0.5rem;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #a8b8c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding: 2rem 2rem 0;
    border-top: 1px solid #2c3e50;
    text-align: center;
    color: #a8b8c7;
}

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

.cookie-banner.hidden {
    display: none;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-accept {
    background-color: #3b7cbf;
    color: #ffffff;
}

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.9;
}

.page-hero {
    background-color: #f8fafc;
    padding: 4rem 0;
    text-align: center;
}

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

.page-hero .lead {
    font-size: 1.3rem;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    padding: 5rem 0;
}

.values-section {
    background-color: #f8fafc;
    padding: 5rem 0;
}

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

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

.value-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.approach-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

.approach-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a2332;
    text-align: center;
}

.approach-section p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.team-section {
    background-color: #f8fafc;
    padding: 5rem 0;
}

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

.team-section p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.cta-section {
    background-color: #3b7cbf;
    color: #ffffff;
    padding: 5rem 0;
    text-align: center;
}

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

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

.cta-section .btn-primary {
    background-color: #ffffff;
    color: #3b7cbf;
}

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

.services-detailed {
    padding: 3rem 0;
}

.service-detail {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

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

.service-detail-content {
    flex: 1;
}

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

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

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

.services-cta {
    background-color: #f8fafc;
    padding: 4rem 0;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.services-cta p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.contact-info-section {
    padding: 3rem 0;
}

.contact-grid {
    display: flex;
    gap: 5rem;
}

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

.contact-info-block h2,
.contact-description h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a2332;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #3b7cbf;
}

.info-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-description p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.location-section {
    background-color: #f8fafc;
    padding: 4rem 0;
}

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

.location-section p {
    font-size: 1.05rem;
    color: #5a6c7d;
}

.thanks-section {
    padding: 6rem 0;
    text-align: center;
}

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

.thanks-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.service-confirm {
    background-color: #e8f4f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    color: #2c3e50;
    font-weight: 600;
}

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

.legal-page {
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    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: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.legal-page ul li {
    color: #5a6c7d;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-page a {
    color: #3b7cbf;
    text-decoration: none;
}

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

.last-updated {
    font-size: 0.95rem;
    color: #7f8c9a;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-right {
        min-height: 400px;
    }

    .split-content,
    .split-content.reverse {
        flex-direction: column;
    }

    .testimonial-row {
        flex-direction: column;
    }

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

    .contact-grid {
        flex-direction: column;
        gap: 3rem;
    }

    .grid-three {
        grid-template-columns: 1fr;
    }

    .grid-two {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .ad-label {
        margin-right: 1rem;
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }

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

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

    .hero-left p {
        font-size: 1.05rem;
    }

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

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

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

    .cookie-actions {
        justify-content: center;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .thanks-actions a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}