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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #4a90c7;
    --accent-color: #d4793b;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

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

.ad-label {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    margin-right: 1rem;
}

.hero-split {
    display: flex;
    min-height: 80vh;
    align-items: center;
    padding: 4rem 5%;
    gap: 4rem;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--primary-color);
}

.hero-left p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 540px;
}

.hero-right {
    flex: 1;
}

.hero-image-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--bg-light);
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: #c26a2e;
    transform: translateY(-2px);
}

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

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

.services-left {
    flex: 1;
}

.services-left img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.services-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.services-right h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.services-right p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.service-card {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.service-card .price {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.link-inline {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.link-inline:hover {
    color: var(--secondary-color);
}

.approach-section {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
    background-color: var(--bg-light);
}

.approach-left {
    flex: 1;
}

.approach-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.approach-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.approach-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.approach-list li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.approach-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.approach-right {
    flex: 1;
}

.approach-right img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.testimonials-section {
    padding: 5rem 5%;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial-card p {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.testimonial-card .author {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-section-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: flex-start;
    background-color: var(--bg-light);
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-left p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.form-right {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-final {
    padding: 5rem 5%;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 3rem 5% 1.5rem;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--bg-white);
}

.footer-col p,
.footer-col a {
    font-size: 0.95rem;
    color: var(--bg-light);
}

.footer-col a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--bg-light);
    font-size: 0.9rem;
}

.footer-bottom .disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    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: 2rem;
}

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

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

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

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

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

.page-header-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

.header-left {
    flex: 1;
}

.header-left h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.header-left p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.header-right {
    flex: 1;
}

.header-right img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.page-header-centered {
    padding: 4rem 5%;
    text-align: center;
    background-color: var(--bg-light);
}

.page-header-centered h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-header-centered p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.about-story {
    padding: 5rem 5%;
}

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

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.values-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: flex-start;
    background-color: var(--bg-light);
}

.values-left {
    flex: 1;
}

.values-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.value-item p {
    font-size: 1rem;
    color: var(--text-light);
}

.values-right {
    flex: 1;
}

.values-right img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.expertise-section {
    padding: 5rem 5%;
    text-align: center;
}

.expertise-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.expertise-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: left;
}

.expertise-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.expertise-card p {
    font-size: 1rem;
    color: var(--text-light);
}

.approach-detail {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

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

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.approach-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta-about {
    padding: 4rem 5%;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-about p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-detail-split {
    display: flex;
    padding: 4rem 5%;
    gap: 4rem;
    align-items: flex-start;
}

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

.service-left {
    flex: 1;
}

.service-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-left p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-left ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-left ul li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 1.5rem;
}

.service-right {
    flex: 1;
}

.service-right img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.pricing-note {
    padding: 3rem 5%;
    background-color: var(--bg-light);
}

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

.note-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.note-content p {
    font-size: 1rem;
    color: var(--text-light);
}

.cta-services {
    padding: 4rem 5%;
    text-align: center;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-services p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: flex-start;
}

.contact-left {
    flex: 1;
}

.contact-left h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.contact-info p {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-right {
    flex: 1;
}

.contact-image-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--bg-light);
}

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

.contact-additional {
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

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

.additional-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.additional-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.additional-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.additional-content ul li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    display: none;
}

.service-confirmation p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.next-steps ul {
    padding-left: 1.5rem;
}

.next-steps ul li {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-size: 1.05rem;
}

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

.legal-page {
    padding: 4rem 5%;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-split,
    .services-split,
    .approach-section,
    .form-section-split,
    .page-header-split,
    .values-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-left h1,
    .header-left h1,
    .contact-left h1,
    .thanks-content h1 {
        font-size: 2rem;
    }

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

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

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