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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #6b9ab8;
    --accent-color: #d4a574;
    --text-dark: #2d2d2d;
    --text-light: #666666;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #5a9e6f;
    --error-color: #c5605e;
}

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);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: var(--bg-white);
    font-size: 0.95rem;
}

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

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

.btn-accept, .btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #4d8a5f;
    transform: translateY(-2px);
}

.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);
}

.navigation {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

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

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

.ad-disclosure {
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 0.4rem 0.9rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 1rem 2rem;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 1rem 0;
    color: var(--text-dark);
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

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

.hero-left, .hero-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-left {
    padding: 4rem;
    background-color: var(--bg-light);
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image 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);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 95, 125, 0.25);
}

.story-section {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.story-image {
    flex: 1;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
}

.insight-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.container-narrow h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

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

.services-left {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-left h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1.5rem;
}

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

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

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 1.5rem;
    font-size: 0.95rem;
}

.price {
    padding: 0.5rem 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
}

.btn-select-service {
    margin: 1rem 1.5rem 1.5rem;
    padding: 0.9rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonials-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

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

.testimonials-container h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.testimonial {
    flex: 1;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

.form-section {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-intro h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.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: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    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: var(--primary-color);
}

.btn-submit {
    padding: 1.1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 125, 0.25);
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: var(--bg-light);
}

.disclaimer {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 2rem 1.5rem;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--bg-white);
}

.references {
    font-size: 0.85rem;
}

.references li {
    margin-bottom: 1rem;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.page-header {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 4rem 2rem;
    text-align: center;
}

.header-content h1 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.header-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.about-intro-split {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

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

.about-left {
    flex: 1;
}

.about-image {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.about-right {
    flex: 1;
}

.about-right h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.philosophy-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.values-section {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

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

.values-container h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.values-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid var(--accent-color);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

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

.team-container h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.team-intro {
    margin-bottom: 2.5rem;
}

.team-image {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.approach-section {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.approach-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-left {
    flex: 1;
}

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

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

.approach-left li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.approach-right {
    flex: 1;
}

.approach-image {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.cta-about {
    padding: 5rem 2rem;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.services-intro {
    padding: 3rem 2rem;
    background-color: var(--bg-light);
}

.services-detailed {
    background-color: var(--bg-white);
}

.service-item-split {
    padding: 5rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.service-item-split:last-child {
    border-bottom: none;
}

.service-item-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.service-content {
    flex: 1;
}

.service-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-details {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.detail-item {
    display: flex;
    gap: 0.5rem;
}

.detail-item strong {
    min-width: 80px;
    color: var(--text-dark);
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.service-visual {
    flex: 1;
}

.contact-split {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.contact-block h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.contact-visual {
    flex: 1;
}

.contact-image {
    width: 100%;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
}

.location-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.thanks-section {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

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

.thanks-content {
    flex: 1;
}

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

.service-confirmation {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.5rem;
}

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

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.thanks-visual {
    flex: 1;
}

.thanks-image {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.legal-page {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

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

.legal-container h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

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

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

.legal-container li {
    margin-bottom: 0.7rem;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-split,
    .story-container,
    .services-split,
    .testimonials-grid,
    .about-intro-split,
    .approach-split,
    .service-item-split,
    .contact-split,
    .thanks-container {
        flex-direction: column;
    }

    .service-item-split.reverse {
        flex-direction: column;
    }

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

    .services-left {
        flex: 1;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .footer-content {
        flex-wrap: wrap;
    }

    .footer-column {
        flex: 1 1 calc(50% - 1.5rem);
        min-width: 250px;
    }
}

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

    .hamburger {
        display: flex;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .hero-left {
        min-height: auto;
        padding: 2.5rem 1.5rem;
    }

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

    .story-section,
    .insight-section,
    .services-preview,
    .testimonials-section,
    .form-section,
    .about-intro-split,
    .philosophy-section,
    .values-section,
    .team-section,
    .approach-section,
    .services-intro,
    .service-item-split,
    .contact-split,
    .location-section,
    .thanks-section {
        padding: 3rem 1.5rem;
    }

    .page-header {
        padding: 3rem 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: flex-start;
    }

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

    .footer-column {
        flex: 1 1 100%;
    }

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

    .btn-primary,
    .btn-secondary {
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .brand {
        font-size: 1.4rem;
    }

    .cta-primary,
    .btn-submit {
        width: 100%;
        text-align: center;
    }
}