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

:root {
    --primary-gold: #d4af37;
    --dark-gold: #b8941f;
    --light-gold: #f4e5c2;
    --dark-bg: #1a1a1a;
    --gray-dark: #2a2a2a;
    --gray-medium: #666666;
    --gray-light: #f5f5f5;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

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

ul {
    list-style: none;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

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

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-gold);
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-gold);
}

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

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

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 6%;
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--white) 100%);
}

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

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

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

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

.cta-primary {
    display: inline-block;
    background-color: var(--primary-gold);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.cta-primary-large {
    display: inline-block;
    background-color: var(--primary-gold);
    color: var(--white);
    padding: 1.3rem 3rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cta-primary-large:hover {
    background-color: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

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

.cta-secondary:hover {
    background-color: var(--primary-gold);
    color: var(--white);
}

.intro-split {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
}

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

.intro-image {
    flex: 1;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6%;
    background-color: var(--white);
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
    color: var(--text-dark);
}

.intro-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

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

.philosophy-left {
    flex: 1;
}

.philosophy-left h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.philosophy-left p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

.philosophy-card {
    background-color: var(--white);
    padding: 2rem;
    border-left: 4px solid var(--primary-gold);
}

.philosophy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.philosophy-card p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.service-card {
    display: flex;
    gap: 3rem;
    align-items: stretch;
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-visual {
    flex: 1;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-visual img {
    transform: scale(1.05);
}

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

.service-info h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.service-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.btn-select-service {
    background-color: var(--primary-gold);
    color: var(--white);
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.why-us-split {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
    background-color: var(--dark-bg);
}

.why-left {
    flex: 1;
    padding: 4rem 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-left h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 2.5rem;
}

.why-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-item h4 {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 0.8rem;
}

.why-item p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.7;
}

.why-right {
    flex: 1;
    overflow: hidden;
}

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

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

.testimonials-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
}

.testimonial-card {
    flex: 1;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-gold);
    font-size: 1rem;
}

.form-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--white) 100%);
}

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

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-left p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-benefits li {
    font-size: 1.1rem;
    color: var(--text-light);
    padding-left: 2rem;
    position: relative;
}

.form-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.3rem;
}

.form-right {
    flex: 1;
}

.contact-form {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    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-gold);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    cursor: pointer;
}

.checkbox-group label {
    font-weight: normal;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-gold);
    color: var(--white);
    padding: 1.1rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta-split {
    display: flex;
    min-height: 60vh;
    align-items: stretch;
}

.final-cta-content {
    flex: 1;
    background-color: var(--dark-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 6%;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.final-cta-content p {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.final-cta-image {
    flex: 1;
    overflow: hidden;
}

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

.main-footer {
    background-color: var(--gray-dark);
    color: var(--white);
    padding: 3rem 5% 1.5rem;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--primary-gold);
}

.footer-col p,
.footer-col li {
    color: #cccccc;
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.footer-col a:hover {
    color: var(--primary-gold);
}

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta a {
    display: block;
    background-color: var(--primary-gold);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background-color: var(--dark-gold);
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 1.5rem 5%;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    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(--primary-gold);
    text-decoration: underline;
}

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

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

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

.btn-cookie-accept:hover {
    background-color: var(--dark-gold);
}

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

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    padding: 5rem 5%;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: stretch;
}

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

.service-detail-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.service-features li {
    padding: 0.8rem 0 0.8rem 2rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.service-pricing {
    background-color: var(--gray-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.price-label {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.service-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.service-cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

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

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

.values-section {
    padding: 5rem 5%;
    background-color: var(--gray-light);
}

.values-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 300px;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-split {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
}

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

.team-image {
    flex: 1;
    overflow: hidden;
}

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

.team-content {
    flex: 1;
    padding: 4rem 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white);
}

.team-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

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

.approach-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.approach-timeline {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.approach-step {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.approach-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.approach-step p {
    color: var(--text-light);
    line-height: 1.7;
}

.numbers-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
}

.numbers-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--white);
}

.numbers-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.number-card {
    text-align: center;
}

.number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.number-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.mission-split {
    display: flex;
    padding: 4rem 5%;
    gap: 4rem;
    align-items: center;
    background-color: var(--gray-light);
}

.mission-content {
    flex: 1;
}

.mission-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.mission-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

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

.cta-about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-about-content p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-split-section {
    display: flex;
    min-height: 70vh;
    padding: 4rem 5%;
    gap: 4rem;
}

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

.contact-info-side h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

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

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

.contact-block a {
    color: var(--primary-gold);
    text-decoration: underline;
}

.contact-map-side {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: var(--white);
}

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

.contact-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.contact-cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.faq-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

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

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--white) 100%);
}

.thanks-container {
    max-width: 900px;
    background-color: var(--white);
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.thanks-message {
    margin-bottom: 3rem;
}

.thanks-lead {
    font-size: 1.4rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.thanks-message p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-next-steps {
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.next-steps-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.next-step {
    flex: 1;
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.next-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.next-step p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

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

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

.thanks-contact-info {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.thanks-contact-info p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.thanks-contact-info a {
    color: var(--primary-gold);
    text-decoration: underline;
}

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

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.legal-section ul,
.legal-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-section li {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.7;
    list-style: disc;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table thead {
    background-color: var(--gray-light);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .philosophy-container {
        flex-direction: column;
        gap: 3rem;
    }

    .testimonials-container {
        flex-direction: column;
    }

    .approach-timeline {
        flex-wrap: wrap;
    }

    .approach-step {
        flex: 1 1 calc(50% - 1rem);
    }

    .numbers-grid {
        flex-wrap: wrap;
    }

    .number-card {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        padding: 1rem 5%;
        border-bottom: 1px solid var(--border-color);
    }

    .hero-split,
    .intro-split,
    .why-us-split,
    .final-cta-split,
    .about-story-split,
    .team-split,
    .mission-split {
        flex-direction: column;
        min-height: auto;
    }

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

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

    .form-container-split,
    .contact-split-section {
        flex-direction: column;
        gap: 2rem;
    }

    .approach-step {
        flex: 1 1 100%;
    }

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

    .values-grid {
        flex-direction: column;
    }

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

    .next-steps-grid {
        flex-direction: column;
    }

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

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

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

    .section-title {
        font-size: 2rem;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .sticky-cta a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cookie-table {
        font-size: 0.9rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.7rem;
    }
}

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

    .cta-primary,
    .cta-secondary,
    .cta-primary-large {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }

    .service-info,
    .contact-form {
        padding: 2rem;
    }

    .thanks-container {
        padding: 2.5rem 1.5rem;
    }

    .thanks-container h1 {
        font-size: 2rem;
    }
}