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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
    --success-color: #27ae60;
}

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

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

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

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

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

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

.hero-content {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

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

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

.intro-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.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;
    padding: 4rem 5%;
}

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

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    padding: 5rem 5%;
    gap: 3rem;
    background-color: var(--bg-light);
}

.value-card {
    flex: 1 1 300px;
    padding: 2.5rem;
    background-color: var(--bg-white);
    border-left: 4px solid var(--secondary-color);
}

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

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

.showcase-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.showcase-content {
    flex: 1;
    padding: 4rem 5%;
}

.showcase-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.2;
}

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

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

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

.testimonial-feature {
    padding: 5rem 10%;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.testimonial-feature blockquote {
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.6;
    text-align: center;
}

.testimonial-feature cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    color: var(--accent-color);
}

.services-preview-split {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.services-preview-split.reverse {
    flex-direction: row-reverse;
}

.services-preview-image {
    flex: 1;
    overflow: hidden;
}

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

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

.services-preview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-item {
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-left: 3px solid var(--secondary-color);
}

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

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

.service-item .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.process-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
    background-color: var(--bg-white);
}

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

.process-content {
    flex: 1;
    padding: 4rem 5%;
}

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

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

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

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

.cta-feature h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-feature p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

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

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

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

.form-split {
    display: flex;
    align-items: stretch;
    min-height: 700px;
    background-color: var(--bg-light);
}

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

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.form-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.form-container {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-white);
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

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

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

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

.gallery-split {
    display: flex;
    flex-wrap: wrap;
}

.gallery-item {
    flex: 1 1 50%;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

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

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

.footer-section {
    flex: 1 1 220px;
}

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

.footer-section p,
.footer-section li {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

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

.footer-section a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

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

.cta-sticky:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem 5%;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

.page-hero p {
    font-size: 1.3rem;
    color: var(--text-light);
}

.about-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

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

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

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

.about-content {
    flex: 1;
    padding: 4rem 5%;
}

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

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

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

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

.philosophy-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.team-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

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

.team-content {
    flex: 1;
    padding: 4rem 5%;
}

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

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

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

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

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

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

.values-grid-detailed {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.value-detail-card {
    flex: 1 1 calc(50% - 1.5rem);
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-top: 4px solid var(--secondary-color);
}

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

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

.awards-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
    background-color: var(--bg-light);
}

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

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

.awards-content {
    flex: 1;
    padding: 4rem 5%;
}

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

.awards-list {
    list-style: none;
}

.awards-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
    line-height: 1.7;
}

.awards-list strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.commitment-section {
    padding: 5rem 10%;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.commitment-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.commitment-section p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

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

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

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

.service-detail-split {
    display: flex;
    align-items: stretch;
    min-height: 600px;
    margin-bottom: 4rem;
}

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

.service-detail-image {
    flex: 1;
    overflow: hidden;
}

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

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

.service-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border-radius: 3px;
}

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

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

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

.service-features li {
    padding: 0.7rem 0 0.7rem 2rem;
    color: var(--text-light);
    position: relative;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

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

.price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.price-note {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.services-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.service-add-ons {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.service-add-ons h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.add-ons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.add-on-card {
    flex: 1 1 calc(25% - 1.5rem);
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    text-align: center;
}

.add-on-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.add-on-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.add-on-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

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

.process-overview h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.process-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.timeline-item {
    flex: 1 1 calc(33.33% - 2rem);
    padding: 2rem;
    background-color: var(--bg-white);
    border-left: 4px solid var(--secondary-color);
}

.timeline-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    margin-bottom: 1rem;
}

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

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

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

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

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

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

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

.contact-split {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

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

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

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

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.contact-detail p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-map {
    flex: 1;
    position: relative;
}

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

.map-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 1rem;
    background-color: rgba(0,0,0,0.7);
    color: var(--bg-white);
    text-align: center;
}

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

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

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

.checklist {
    list-style: none;
    margin: 2rem 0;
    padding-left: 0;
}

.checklist li {
    padding: 0.8rem 0 0.8rem 2.5rem;
    color: var(--text-light);
    position: relative;
    line-height: 1.7;
}

.checklist li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
}

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

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

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

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

.features-list li {
    padding: 0.7rem 0 0.7rem 2rem;
    color: var(--text-light);
    position: relative;
}

.features-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

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

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

.thanks-hero {
    padding: 5rem 10%;
    background-color: var(--bg-light);
    text-align: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
}

.thanks-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-confirmation {
    margin-top: 1.5rem;
}

.service-selected {
    padding: 1rem;
    background-color: var(--bg-white);
    border-left: 4px solid var(--secondary-color);
    color: var(--text-dark);
}

.next-steps {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

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

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

.step-card {
    flex: 1 1 calc(33.33% - 1.5rem);
    padding: 2rem;
    background-color: var(--bg-light);
    text-align: center;
    border-radius: 4px;
}

.step-num {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    line-height: 60px;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

.while-waiting h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.waiting-suggestions {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.suggestion-card {
    flex: 1 1 calc(33.33% - 1.5rem);
    background-color: var(--bg-white);
    border-radius: 4px;
    overflow: hidden;
}

.suggestion-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.suggestion-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.suggestion-card p {
    padding: 0 1.5rem 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.link-arrow {
    display: block;
    padding: 0 1.5rem 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-urgent {
    padding: 5rem 10%;
    background-color: var(--bg-white);
    text-align: center;
}

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

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

.contact-email {
    font-size: 1.5rem;
    margin-top: 1rem;
}

.contact-email a {
    color: var(--secondary-color);
    font-weight: 600;
}

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

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

.legal-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

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

.legal-content {
    max-width: 900px;
    line-height: 1.8;
}

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

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

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

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

.legal-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

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

.cookie-table thead {
    background-color: var(--bg-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(--primary-color);
}

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

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

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

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

    .timeline-item {
        flex: 1 1 calc(50% - 1.25rem);
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 2rem 0;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .showcase-split,
    .services-preview-split,
    .process-split,
    .about-split,
    .team-split,
    .awards-split,
    .service-detail-split,
    .contact-split,
    .form-split {
        flex-direction: column;
    }

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

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

    .hero-content,
    .intro-text,
    .showcase-content,
    .process-content,
    .about-content,
    .team-content,
    .awards-content,
    .service-detail-content,
    .contact-info,
    .form-intro {
        padding: 3rem 5%;
    }

    .hero-image,
    .intro-image,
    .showcase-image,
    .process-image,
    .about-image,
    .team-image,
    .awards-image,
    .service-detail-image,
    .contact-map {
        height: 300px;
    }

    .gallery-item {
        flex: 1 1 100%;
    }

    .value-card,
    .add-on-card,
    .timeline-item,
    .faq-item,
    .step-card,
    .suggestion-card {
        flex: 1 1 100%;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }

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

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

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

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

    .intro-text h2,
    .showcase-content h2,
    .process-content h2,
    .about-content h2,
    .team-content h2 {
        font-size: 2rem;
    }

    .navbar {
        padding: 1rem 5%;
    }

    .nav-brand {
        font-size: 1.2rem;
    }
}