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

:root {
    --primary-color: #1a2332;
    --secondary-color: #2d4059;
    --accent-color: #c9a961;
    --text-primary: #1a2332;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px 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-primary);
    background-color: var(--bg-white);
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

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

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

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background-color: var(--bg-light);
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content-left p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 550px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #b39450;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.intro-asymmetric {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 3rem;
    align-items: center;
}

.intro-offset {
    flex: 1.2;
}

.intro-offset h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-offset p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

.intro-visual {
    flex: 0.8;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.services-header-center {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-header-center h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-header-center p {
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.services-split-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-split {
    display: flex;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

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

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

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

.service-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

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

.btn-select-service {
    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;
    align-self: flex-start;
}

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

.service-standalone {
    max-width: 1400px;
    margin: 3rem auto 0;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    padding: 3rem;
}

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

.service-content-center h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.testimonials-offset {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-offset h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.testimonial-layout {
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

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

.testimonial-card.featured {
    background-color: var(--accent-color);
    color: var(--bg-white);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.testimonial-card p {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-card cite {
    font-size: 0.95rem;
    font-style: normal;
    font-weight: 600;
    opacity: 0.9;
}

.form-section-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 3rem;
    gap: 4rem;
}

.form-intro-left {
    flex: 0.9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.form-intro-left p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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

.form-container-right {
    flex: 1.1;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

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

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

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

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

.btn-submit:hover {
    background-color: #b39450;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.trust-indicators {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 6rem 3rem;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.trust-grid {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h4 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.trust-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    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: 2rem;
}

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

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.main-footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 4rem 3rem 2rem;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-weight: 700;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--bg-white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.85;
}

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

.page-hero-minimal {
    background-color: var(--bg-light);
    padding: 5rem 3rem 3rem;
    text-align: center;
}

.page-hero-minimal h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

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

.about-text-left {
    flex: 1.3;
}

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

.about-text-left p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.about-image-right {
    flex: 0.7;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.values-asymmetric {
    background-color: var(--bg-light);
    padding: 5rem 3rem;
}

.values-asymmetric h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.values-layout {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

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

.value-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.approach-content-center {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 3rem;
}

.approach-wrapper h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.approach-text {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.approach-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.approach-image-inline {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.approach-image-inline img {
    width: 100%;
    height: auto;
    display: block;
}

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

.team-minimal h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.team-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.team-member {
    flex: 1;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.team-member h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.team-member p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.cta-about {
    padding: 5rem 3rem;
}

.cta-content-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

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

.cta-content-centered p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-button-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background-color: #b39450;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.services-detailed {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 3rem;
}

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

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

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

.service-detail-content h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.service-tagline {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.7rem 0 0.7rem 1.5rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-pricing-detail {
    font-size: 2.5rem;
    color: var(--accent-color);
    font-weight: 700;
    margin: 1.5rem 0;
}

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

.cta-service:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-detail-image {
    flex: 0.8;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.service-approach {
    background-color: var(--bg-light);
    padding: 4rem 3rem;
    margin: 4rem 0;
}

.approach-content-limited {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.approach-content-limited p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.pricing-transparency {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 3rem;
}

.pricing-content {
    text-align: center;
}

.pricing-content h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.pricing-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.contact-info-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 3rem;
}

.contact-details-card {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.contact-details-card h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-approach {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 3rem;
}

.approach-text-center {
    text-align: center;
}

.approach-text-center h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.approach-text-center p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.location-context {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 3rem;
}

.location-split {
    display: flex;
    gap: 4rem;
    align-items: center;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
}

.location-text {
    flex: 1;
}

.location-text h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.location-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.location-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.contact-expectations {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 3rem;
}

.expectations-content {
    text-align: center;
}

.expectations-content h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.expectations-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.thanks-hero {
    background-color: var(--bg-light);
    padding: 5rem 3rem;
    text-align: center;
}

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

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.service-confirmation {
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 6px;
    display: inline-block;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.next-steps {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 3rem;
}

.next-steps-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.steps-layout {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.step-item {
    flex: 1;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.step-item h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-item p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.thanks-additional {
    background-color: var(--bg-light);
    padding: 4rem 3rem;
}

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

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

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

.thanks-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-link {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.thanks-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.legal-page {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 3rem;
}

.legal-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-date {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

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

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin: 2rem 0 0.8rem;
    font-weight: 600;
}

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

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

.legal-content li {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

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

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

@media (max-width: 1024px) {
    .hero-split,
    .service-card-split,
    .service-card-split.reverse,
    .form-section-split,
    .about-split-content,
    .location-split,
    .service-detail-split,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .testimonial-layout,
    .trust-grid,
    .team-layout,
    .steps-layout {
        flex-direction: column;
    }

    .value-card.offset-left,
    .value-card.offset-right {
        margin: 0;
    }

    .hero-content-left h1,
    .page-hero-minimal h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

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

    .hero-content-left,
    .service-info,
    .form-container-right {
        padding: 2rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}