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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

a:hover {
    opacity: 0.8;
}

.main-nav {
    background-color: #1a1a1a;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #d4a574;
}

.ad-label {
    color: #999999;
    font-size: 0.8rem;
    border-left: 1px solid #444;
    padding-left: 2rem;
}

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

.hero-left {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f6f3;
}

.hero-left h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    position: relative;
    background-color: #d4a574;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    opacity: 1;
}

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

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

.info-image {
    flex: 1;
    background-color: #e8e6e1;
}

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

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

.info-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.info-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 1.5rem;
}

.link-arrow {
    color: #d4a574;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-block;
    margin-top: 1rem;
}

.link-arrow:hover {
    color: #b8895e;
    opacity: 1;
}

.services-display {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.services-intro h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 1.2rem;
    color: #666666;
    line-height: 1.8;
}

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

.service-card-modern {
    display: flex;
    align-items: stretch;
    min-height: 400px;
    border-bottom: 1px solid #e0e0e0;
}

.service-card-modern:nth-child(even) {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    background-color: #f0ede8;
}

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

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

.service-details h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-details p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 2rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4a574;
}

.cta-split-section {
    display: flex;
    min-height: 600px;
    align-items: stretch;
    background-color: #2c3e50;
}

.cta-content-left {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.cta-content-left h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content-left p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.cta-form-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    align-items: center;
    background-color: #34495e;
}

.contact-form-inline {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form-inline label {
    display: block;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.contact-form-inline label:first-of-type {
    margin-top: 0;
}

.contact-form-inline select,
.contact-form-inline input {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid #5a6f85;
    border-radius: 4px;
    background-color: #ffffff;
    color: #2c3e50;
}

.contact-form-inline select:focus,
.contact-form-inline input:focus {
    outline: none;
    border-color: #d4a574;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: #d4a574;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 2rem;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #b8895e;
}

.main-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 4rem 2rem 2rem 2rem;
}

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

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #999999;
    margin-bottom: 0.5rem;
}

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

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

.footer-col ul li a {
    color: #cccccc;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #d4a574;
    opacity: 1;
}

.disclaimer-footer {
    font-size: 0.85rem;
    color: #777777;
    margin-top: 1rem;
    line-height: 1.5;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #888888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 2rem;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 0.7rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #2c3e50;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #e0e0e0;
    color: #333333;
}

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

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

.hero-text-side {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c3e50;
    color: #ffffff;
}

.hero-text-side h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #e0e0e0;
}

.hero-image-side {
    flex: 1;
    background-color: #d4a574;
}

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

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

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

.content-image-left,
.content-image-right {
    flex: 1;
    background-color: #f5f3f0;
}

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

.content-text-left,
.content-text-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-text-left h2,
.content-text-right h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.content-text-left p,
.content-text-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1.3rem;
}

.team-section-split {
    padding: 6rem 2rem;
    background-color: #f8f6f3;
}

.team-intro-full {
    max-width: 900px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.team-intro-full h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.team-intro-full p {
    font-size: 1.15rem;
    color: #666666;
    line-height: 1.7;
}

.team-content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.team-text {
    flex: 1;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.3rem;
    color: #1a1a1a;
}

.team-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1.3rem;
}

.team-image {
    flex: 1;
    background-color: #e0ddd8;
}

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

.values-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.values-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666666;
}

.cta-centered {
    padding: 6rem 2rem;
    text-align: center;
    background-color: #f8f6f3;
}

.cta-centered h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.cta-centered p {
    font-size: 1.15rem;
    color: #666666;
    margin-bottom: 2.5rem;
}

.cta-button-large {
    display: inline-block;
    background-color: #d4a574;
    color: #ffffff;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button-large:hover {
    background-color: #b8895e;
    transform: translateY(-2px);
    opacity: 1;
}

.page-header-centered {
    padding: 5rem 2rem 3rem 2rem;
    text-align: center;
    background-color: #f8f6f3;
}

.page-header-centered h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.header-subtitle {
    font-size: 1.2rem;
    color: #666666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.service-detail-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-detail-image {
    flex: 1;
    background-color: #f0ede8;
}

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

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

.service-detail-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-intro {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1.3rem;
}

.price-box {
    display: inline-block;
    background-color: #f8f6f3;
    padding: 1rem 2rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4a574;
    border-radius: 4px;
    margin-top: 1rem;
}

.process-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.process-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.process-steps-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.step-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f6f3;
    border-radius: 4px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #d4a574;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.step-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666666;
}

.cta-form-section {
    padding: 6rem 2rem;
    background-color: #f8f6f3;
}

.cta-form-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.cta-text {
    text-align: center;
    font-size: 1.15rem;
    color: #666666;
    margin-bottom: 3rem;
}

.standard-form {
    max-width: 600px;
    margin: 0 auto;
}

.standard-form label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.standard-form label:first-of-type {
    margin-top: 0;
}

.standard-form select,
.standard-form input {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    background-color: #ffffff;
    color: #2c3e50;
}

.standard-form select:focus,
.standard-form input:focus {
    outline: none;
    border-color: #d4a574;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 2rem;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #1a252f;
}

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

.contact-info-side {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c3e50;
    color: #ffffff;
}

.contact-info-side h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.contact-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #e0e0e0;
}

.contact-visual-side {
    flex: 1;
    background-color: #d4a574;
}

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

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

.contact-left {
    flex: 1;
    padding: 4rem;
    background-color: #f8f6f3;
}

.contact-right {
    flex: 1;
    padding: 4rem;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-block h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
}

.note-text {
    font-size: 0.95rem;
    color: #888888;
    margin-top: 1rem;
    font-style: italic;
}

.info-card {
    background-color: #f8f6f3;
    padding: 2.5rem;
    border-radius: 4px;
    border-left: 4px solid #d4a574;
}

.info-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.3rem;
    color: #2c3e50;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 1rem;
}

.checklist {
    list-style: none;
    margin: 1.5rem 0;
}

.checklist li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555555;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.7rem;
}

.checklist li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-size: 1.5rem;
    line-height: 1.4;
}

.info-note {
    font-size: 0.95rem;
    color: #777777;
    margin-top: 1.5rem;
    line-height: 1.6;
}

.visit-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.visit-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.visit-content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.visit-text {
    flex: 1;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visit-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1.5rem;
}

.visit-image {
    flex: 1;
    background-color: #e0ddd8;
}

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

.faq-section {
    padding: 6rem 2rem;
    background-color: #f8f6f3;
}

.faq-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 300px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 4px;
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666666;
}

.thanks-section {
    display: flex;
    min-height: 80vh;
    align-items: stretch;
}

.thanks-content {
    flex: 1.2;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thanks-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 2.5rem;
}

.thanks-details {
    background-color: #f8f6f3;
    padding: 2rem;
    border-radius: 4px;
    margin-bottom: 2.5rem;
}

.thanks-details p {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.thanks-details ul {
    list-style: none;
    margin-left: 1rem;
}

.thanks-details ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #666666;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.7rem;
}

.thanks-details ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: 700;
}

.thanks-info {
    margin-bottom: 2.5rem;
}

.thanks-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.thanks-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a252f;
    opacity: 1;
}

.btn-secondary {
    display: inline-block;
    background-color: #d4a574;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #b8895e;
    opacity: 1;
}

.thanks-image {
    flex: 0.8;
    background-color: #e0ddd8;
}

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

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

.legal-page h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 1.15rem;
    color: #666666;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.legal-page h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1.3rem;
}

.legal-date {
    font-size: 0.95rem;
    color: #888888;
    margin-top: 3rem;
    font-style: italic;
}

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

.cookie-table thead {
    background-color: #f8f6f3;
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    color: #2c3e50;
    border-bottom: 2px solid #d0d0d0;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.url-text {
    color: #d4a574;
    word-break: break-all;
}

@media (max-width: 1024px) {
    .hero-split,
    .info-split,
    .cta-split-section,
    .page-hero-split,
    .content-split,
    .team-content-split,
    .service-detail-split,
    .contact-details-split,
    .visit-content-split,
    .thanks-section,
    .contact-hero-split {
        flex-direction: column;
    }

    .info-split.reverse,
    .content-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .service-card-modern:nth-child(even) {
        flex-direction: column;
    }

    .hero-left,
    .hero-text-side,
    .contact-info-side {
        padding: 3rem 2rem;
    }

    .hero-left h1,
    .hero-text-side h1,
    .contact-info-side h1 {
        font-size: 2.5rem;
    }

    .services-intro h2,
    .page-header-centered h1 {
        font-size: 2.3rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .ad-label {
        border-left: none;
        padding-left: 0;
        margin-top: 0.5rem;
    }
}

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

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }

    .footer-split {
        flex-direction: column;
    }

    .value-item,
    .faq-item,
    .step-item {
        flex: 1 1 100%;
    }
}