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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

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

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

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

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

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

.cookie-btn.reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

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

.main-nav a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 0.8rem;
    color: #888888;
    padding: 0.3rem 0.8rem;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
}

.hero-magazine {
    background-color: #ffffff;
}

.hero-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.hero-text-block {
    flex: 1;
    padding: 4rem 3rem 4rem 5rem;
}

.hero-text-block h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 1.15rem;
    color: #555555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    background-color: #d4a574;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.hero-image-block {
    flex: 1;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.intro-columns {
    padding: 5rem 0;
    background-color: #f5f5f5;
}

.container-magazine {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.col-layout-three {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.col-narrow {
    flex: 1;
}

.col-wide {
    flex: 1.5;
}

.col-narrow h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 700;
}

.col-narrow h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #3a3a3a;
    font-weight: 600;
}

.col-narrow p {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 1.5rem;
}

.col-wide img {
    width: 100%;
    height: auto;
    margin-bottom: 0.8rem;
    border-radius: 4px;
    background-color: #d8d8d8;
    object-fit: cover;
}

.caption {
    font-size: 0.9rem;
    color: #777777;
    font-style: italic;
}

.text-link {
    color: #d4a574;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #d4a574;
    transition: all 0.3s ease;
}

.text-link:hover {
    color: #c29461;
    border-bottom-color: #c29461;
}

.featured-content {
    padding: 4rem 0;
    background-color: #ffffff;
}

.asymmetric-grid {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background-color: #e0e0e0;
}

.feature-card.large {
    flex: 2;
    min-width: 400px;
}

.feature-card.small {
    flex: 1;
    min-width: 300px;
}

.feature-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

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

.card-overlay h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.card-overlay p {
    font-size: 0.95rem;
    color: #e0e0e0;
}

.services-magazine {
    padding: 5rem 0;
    background-color: #fafafa;
}

.section-header-offset {
    margin-bottom: 3rem;
    padding-left: 4rem;
}

.label-small {
    display: block;
    font-size: 0.85rem;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-header-offset h2 {
    font-size: 2.5rem;
    color: #2c2c2c;
    font-weight: 800;
}

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

.service-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 6px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 700;
}

.service-content p {
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price-tag {
    display: block;
    font-size: 1.8rem;
    color: #d4a574;
    font-weight: 700;
    margin-bottom: 1rem;
}

.select-service {
    width: 100%;
    padding: 0.9rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #1a1a1a;
}

.testimonial-inline {
    padding: 4rem 0;
    background-color: #2c2c2c;
}

.testimonial-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.testimonial-block p {
    font-size: 1.4rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-block cite {
    font-size: 1rem;
    color: #d4a574;
    font-style: normal;
}

.form-section {
    padding: 5rem 0;
    background-color: #f5f5f5;
}

.form-layout-split {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    font-weight: 700;
}

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

.form-container {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #3a3a3a;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    padding: 1rem;
    background-color: #d4a574;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.secondary-cta {
    padding: 4rem 0;
    background-color: #ffffff;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 700;
}

.cta-box p {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2c2c2c;
    color: #ffffff;
}

.main-footer {
    background-color: #2c2c2c;
    color: #cccccc;
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-columns {
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

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

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

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

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

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

.footer-col p {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    padding: 2rem 0;
    border-top: 1px solid #444444;
    border-bottom: 1px solid #444444;
    margin-bottom: 1.5rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #aaaaaa;
}

.footer-bottom {
    text-align: center;
}

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

.page-hero {
    padding: 4rem 0 3rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.page-hero h1 {
    font-size: 3rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-weight: 800;
}

.lead-text {
    font-size: 1.3rem;
    color: #666666;
}

.about-content {
    padding: 4rem 0;
    background-color: #ffffff;
}

.col-layout-two {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.col-text {
    flex: 1;
}

.col-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    font-weight: 700;
}

.col-text p {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.col-image {
    flex: 1;
}

.col-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    background-color: #e0e0e0;
    object-fit: cover;
}

.mission-section {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

.mission-box {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-box h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c2c2c;
    font-weight: 700;
}

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

.mission-item {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.mission-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 600;
}

.mission-item p {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
}

.team-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
    font-weight: 700;
}

.approach-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.approach-text {
    flex: 1.5;
}

.approach-text p {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.approach-image {
    flex: 1;
}

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    background-color: #e0e0e0;
    object-fit: cover;
}

.partners-section {
    padding: 4rem 0;
    background-color: #f5f5f5;
    text-align: center;
}

.partners-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    font-weight: 700;
}

.partners-section p {
    font-size: 1rem;
    color: #666666;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.services-detailed {
    padding: 4rem 0;
    background-color: #ffffff;
}

.services-list-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    align-items: center;
}

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

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

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

.service-detail-content {
    flex: 1;
    padding: 2.5rem;
}

.service-detail-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-features li {
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 0.6rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "•";
    color: #d4a574;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-large {
    font-size: 2rem;
    color: #d4a574;
    font-weight: 700;
}

.booking-cta-section {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

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

.cta-centered h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    font-weight: 700;
}

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

.contact-content {
    padding: 4rem 0;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 4rem;
}

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

.contact-info-block h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
    font-weight: 700;
}

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

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #3a3a3a;
    font-weight: 600;
}

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

.contact-image-block {
    flex: 1;
}

.contact-image-block img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    background-color: #e0e0e0;
    margin-bottom: 1rem;
    object-fit: cover;
}

.image-note {
    font-size: 0.9rem;
    color: #888888;
    font-style: italic;
}

.additional-contact {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

.additional-contact h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #2c2c2c;
    text-align: center;
    font-weight: 700;
}

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

.info-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 600;
}

.info-card p {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
}

.booking-reference {
    padding: 4rem 0;
    background-color: #ffffff;
}

.thanks-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 800;
}

.confirmation-box {
    background-color: #f5f5f5;
    padding: 2.5rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: left;
}

.confirmation-box h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    font-weight: 700;
}

.confirmation-steps {
    list-style: none;
    counter-reset: step-counter;
}

.confirmation-steps li {
    counter-increment: step-counter;
    font-size: 1rem;
    color: #555555;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.6;
}

.confirmation-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.8rem;
    height: 1.8rem;
    background-color: #d4a574;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.thanks-service {
    margin: 2rem 0;
    font-size: 1.1rem;
    color: #2c2c2c;
}

.next-steps {
    margin-top: 3rem;
}

.next-steps h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 600;
}

.next-steps p {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 2rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.legal-page {
    padding: 4rem 0;
    background-color: #ffffff;
}

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

.container-legal h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 800;
}

.last-updated {
    font-size: 0.9rem;
    color: #888888;
    margin-bottom: 3rem;
}

.container-legal h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 700;
}

.container-legal h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #3a3a3a;
    font-weight: 600;
}

.container-legal p {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

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

.container-legal ul li,
.container-legal ol li {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.container-legal a {
    color: #d4a574;
    text-decoration: none;
    border-bottom: 1px solid #d4a574;
}

.container-legal a:hover {
    color: #c29461;
    border-bottom-color: #c29461;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 0.9rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookies-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #2c2c2c;
}

.cookies-table td {
    color: #555555;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-text-block {
        padding: 3rem 2rem;
    }

    .col-layout-three {
        flex-direction: column;
    }

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

    .feature-card.large,
    .feature-card.small {
        min-width: 100%;
    }

    .services-grid-magazine {
        flex-direction: column;
    }

    .service-item {
        min-width: 100%;
    }

    .form-layout-split {
        flex-direction: column;
    }

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

    .col-layout-two {
        flex-direction: column;
    }

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

    .approach-layout {
        flex-direction: column;
    }

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

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

    .contact-layout {
        flex-direction: column;
    }

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

    .main-nav {
        gap: 1.5rem;
    }
}

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

    .ad-disclosure {
        width: 100%;
        text-align: center;
    }

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

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

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

    .cookie-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }

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