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

:root {
    --primary-color: #2d5f7e;
    --secondary-color: #c77d4b;
    --accent-color: #8b9d77;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0d8cd;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
}

h1, h2, h3, h4 {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

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

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

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

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.btn-cookie:hover {
    background-color: #a96738;
}

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

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

.nav-main {
    position: sticky;
    top: 0;
    background-color: var(--bg-white);
    border-bottom: 2px solid var(--border-color);
    padding: 1.2rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

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

.nav-links a {
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    font-weight: 500;
}

.nav-disclosure {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
    border-left: 2px solid var(--border-color);
    padding-left: 1rem;
}

.hero-asymmetric {
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 550px;
    z-index: 2;
    margin-right: auto;
    padding-right: 3rem;
}

.hero-content-offset h1 {
    color: var(--primary-color);
}

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

.hero-image-float {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 48%;
    transform: rotate(-3deg);
    box-shadow: -12px 18px 40px rgba(0, 0, 0, 0.15);
}

.hero-image-float img {
    width: 100%;
    height: 500px;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.cta-primary {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: 2px solid var(--secondary-color);
}

.cta-primary:hover {
    background-color: #a96738;
    border-color: #a96738;
    transform: translateY(-2px);
}

.cta-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.intro-offset {
    padding: 5rem 6%;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.intro-block-left {
    flex: 1;
    max-width: 600px;
}

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

.intro-visual-right img {
    width: 100%;
    height: 450px;
    transform: translateX(30px);
}

.services-asymmetric {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

.services-header-irregular {
    max-width: 700px;
    margin-bottom: 4rem;
    margin-left: 8%;
}

.services-header-irregular h2 {
    color: var(--primary-color);
}

.service-cards-stagger {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 2rem;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.card-offset-1 {
    margin-left: 5%;
}

.card-offset-2 {
    margin-left: 15%;
}

.card-offset-3 {
    margin-left: 2%;
}

.card-offset-4 {
    margin-left: 20%;
}

.card-offset-5 {
    margin-left: 10%;
}

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

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

.service-info {
    flex: 1;
}

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

.service-info p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.btn-select-service {
    padding: 0.8rem 2rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-select-service:hover {
    background-color: #6f7d5f;
    transform: translateY(-2px);
}

.cta-section-diagonal {
    padding: 5rem 8%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4258 100%);
    color: var(--bg-white);
    transform: skewY(-2deg);
    margin: 4rem 0;
}

.cta-content-box {
    transform: skewY(2deg);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

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

.cta-content-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.form-section-offset {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.form-container-asymmetric {
    max-width: 850px;
    margin-left: 10%;
    background-color: var(--bg-white);
    padding: 3rem;
    border-left: 5px solid var(--secondary-color);
}

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

.form-intro h2 {
    color: var(--primary-color);
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    font-size: 1rem;
    font-family: 'Georgia', serif;
    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: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    align-self: flex-start;
}

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

.trust-block {
    padding: 5rem 6%;
    background-color: var(--bg-white);
}

.trust-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

.testimonials-irregular {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    padding: 2rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    position: relative;
}

.t-1 {
    margin-left: 8%;
    max-width: 650px;
}

.t-2 {
    margin-left: 20%;
    max-width: 600px;
}

.t-3 {
    margin-left: 5%;
    max-width: 680px;
}

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

.testimonial-author {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

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

.footer-asymmetric h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-section-1,
.footer-section-2,
.footer-section-3 {
    margin-bottom: 2.5rem;
}

.footer-section-1 {
    max-width: 400px;
}

.footer-section-2 ul,
.footer-section-3 ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-section-2 a,
.footer-section-3 a {
    color: var(--bg-light);
}

.footer-section-2 a:hover,
.footer-section-3 a:hover {
    color: var(--secondary-color);
}

.footer-disclaimer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 3px solid var(--secondary-color);
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.page-hero-small {
    padding: 4rem 5%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

.page-hero-small h1 {
    color: var(--bg-white);
}

.about-intro-asymmetric {
    padding: 5rem 6%;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.about-text-block {
    flex: 1.2;
}

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

.about-text-block p {
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
}

.about-image-offset {
    flex: 1;
    transform: translateY(40px);
    background-color: var(--bg-light);
}

.about-image-offset img {
    width: 100%;
    height: 400px;
}

.mission-section {
    padding: 5rem 8%;
    background-color: var(--bg-light);
}

.mission-content-irregular {
    max-width: 900px;
}

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

.mission-content-irregular > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-box {
    padding: 2rem;
    background-color: var(--bg-white);
    border-left: 5px solid var(--accent-color);
}

.v-1 {
    margin-left: 5%;
}

.v-2 {
    margin-left: 15%;
}

.v-3 {
    margin-left: 10%;
}

.value-box h3 {
    color: var(--primary-color);
}

.team-section-offset {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.team-section-offset h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.05rem;
    color: var(--text-light);
}

.team-grid-irregular {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.tm-1 {
    margin-left: 3%;
}

.tm-2 {
    margin-left: 12%;
}

.tm-3 {
    margin-left: 7%;
}

.member-image {
    flex: 0 0 200px;
    background-color: var(--bg-light);
}

.member-image img {
    width: 100%;
    height: 200px;
    border-radius: 50%;
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.approach-content {
    max-width: 800px;
    margin-left: 10%;
}

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

.approach-content p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
}

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

.services-intro-text {
    max-width: 750px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
}

.service-detail-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-item {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.sdi-1 {
    margin-left: 2%;
}

.sdi-2 {
    margin-left: 8%;
    flex-direction: row-reverse;
}

.sdi-3 {
    margin-left: 5%;
}

.sdi-4 {
    margin-left: 12%;
    flex-direction: row-reverse;
}

.sdi-5 {
    margin-left: 3%;
}

.sdi-image {
    flex: 0 0 400px;
    background-color: var(--bg-light);
}

.sdi-image img {
    width: 100%;
    height: 350px;
}

.sdi-content {
    flex: 1;
}

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

.sdi-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0;
}

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

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

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

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

.services-cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
}

.contact-section-asymmetric {
    padding: 4rem 6%;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

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

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

.contact-info-offset > p {
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
}

.contact-visual {
    flex: 1;
    background-color: var(--bg-light);
    transform: translateY(-30px);
}

.contact-visual img {
    width: 100%;
    height: 450px;
}

.location-note {
    padding: 4rem 8%;
    background-color: var(--bg-light);
}

.location-content {
    max-width: 750px;
}

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

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

.thanks-content {
    flex: 1;
}

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

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

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

.thanks-visual img {
    width: 100%;
    height: 400px;
}

.legal-content {
    padding: 3rem 6%;
    max-width: 1100px;
    margin: 0 auto;
}

.legal-text {
    line-height: 1.8;
}

.legal-text h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-text h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-text p {
    margin-bottom: 1rem;
}

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

.legal-text li {
    margin-bottom: 0.7rem;
}

@media (max-width: 968px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-image-float {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        transform: none;
        margin-top: 2rem;
    }

    .hero-content-offset {
        padding-right: 0;
    }

    .intro-offset,
    .about-intro-asymmetric,
    .contact-section-asymmetric,
    .thanks-section {
        flex-direction: column;
    }

    .service-card,
    .service-detail-item,
    .team-member {
        flex-direction: column;
    }

    .card-offset-1,
    .card-offset-2,
    .card-offset-3,
    .card-offset-4,
    .card-offset-5,
    .sdi-1,
    .sdi-2,
    .sdi-3,
    .sdi-4,
    .sdi-5,
    .tm-1,
    .tm-2,
    .tm-3,
    .v-1,
    .v-2,
    .v-3,
    .t-1,
    .t-2,
    .t-3 {
        margin-left: 0;
    }

    .form-container-asymmetric,
    .approach-content,
    .mission-content-irregular {
        margin-left: 0;
    }

    .nav-links {
        gap: 1rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}