* {
    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.6;
    color: #2c2c2c;
    background-color: #fafafa;
}

.header-asymmetric {
    background-color: #1a1a1a;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo-block h1 {
    color: #f5f5f5;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

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

.ad-disclosure {
    background-color: #ffc107;
    color: #1a1a1a;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    border-radius: 4px;
    font-weight: 500;
}

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

.nav-floating ul li a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-floating ul li a:hover {
    color: #ffc107;
}

.hero-offset {
    margin-top: 0;
    position: relative;
    height: 75vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #2c2c2c;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 2rem;
}

.hero-text-offset {
    max-width: 600px;
    margin-left: 8%;
    color: #ffffff;
}

.hero-text-offset h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-text-offset p {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
}

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

.intro-left {
    flex: 1;
    padding-left: 10%;
}

.intro-left h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.intro-left p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.intro-right {
    flex: 1.2;
    background-color: #e8e8e8;
}

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

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

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 4rem 15%;
}

.services-header-offset h3 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.services-header-offset p {
    font-size: 1.2rem;
    color: #666;
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    width: calc(33.333% - 1.5rem);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #f9f9f9;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card.offset-1 {
    margin-top: 2rem;
}

.service-card.offset-2 {
    margin-top: -1rem;
}

.service-card.offset-3 {
    margin-top: 3rem;
}

.service-card.offset-4 {
    margin-top: 0.5rem;
}

.service-card.offset-5 {
    margin-top: -0.5rem;
}

.service-card.offset-6 {
    margin-top: 1.5rem;
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #ddd;
}

.service-info {
    padding: 1.8rem;
}

.service-info h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 600;
}

.service-info p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.service-info .price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #c9962a;
    margin-bottom: 1.2rem;
}

.select-service {
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 500;
}

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

.form-section-offset {
    background-color: #f0f0f0;
    padding: 6rem 2rem;
}

.form-container-asymmetric {
    max-width: 800px;
    margin: 0 auto 0 20%;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.form-intro {
    margin-bottom: 2.5rem;
}

.form-intro h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 600;
}

.form-intro p {
    font-size: 1rem;
    color: #666;
}

.booking-form .form-group {
    margin-bottom: 1.8rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 500;
    color: #2c2c2c;
    font-size: 0.95rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #c9962a;
}

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

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

.values-section {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 5rem 2rem;
}

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

.value-block {
    flex: 1;
}

.value-block h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffc107;
    font-weight: 600;
}

.value-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d0d0;
}

.disclaimer-section {
    background-color: #fff8e1;
    padding: 3rem 2rem;
    border-left: 4px solid #ffc107;
}

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

.disclaimer-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #5a5a5a;
}

.footer-asymmetric {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-block h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

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

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

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

.footer-block ul li a:hover {
    color: #ffc107;
}

.email-text {
    font-size: 0.95rem;
    color: #d0d0d0;
}

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

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

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: opacity 0.3s;
    font-weight: 500;
}

.btn-accept {
    background-color: #ffc107;
    color: #1a1a1a;
}

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background-color: #444;
    color: #ffffff;
}

.btn-reject:hover {
    opacity: 0.9;
}

.about-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
    padding: 6rem 2rem;
    text-align: center;
}

.about-hero-content h2 {
    font-size: 3rem;
    color: #ffffff;
    font-weight: 700;
}

.about-story {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

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

.story-text-primary {
    flex: 1.2;
}

.story-text-primary h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.story-text-primary p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.story-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.values-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.values-detailed h3 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

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

.value-item {
    flex: 1 1 calc(50% - 1.5rem);
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.value-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #c9962a;
    font-weight: 600;
}

.value-item p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.team-section {
    background-color: #f0f0f0;
    padding: 5rem 2rem;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.team-intro h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.team-intro p {
    font-size: 1.1rem;
    color: #666;
}

.team-visual {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #ddd;
}

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

.services-page-hero {
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
}

.services-page-hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

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

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

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

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

.service-detail-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #c9962a;
    margin-bottom: 1.5rem;
}

.service-detail-content > p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-includes {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-includes li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1rem;
    color: #5a5a5a;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c9962a;
    font-weight: 700;
}

.service-duration {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
}

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

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

.services-cta {
    background-color: #1a1a1a;
    padding: 4rem 2rem;
    text-align: center;
    color: #ffffff;
}

.services-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.btn-cta {
    display: inline-block;
    background-color: #ffc107;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: opacity 0.3s;
}

.btn-cta:hover {
    opacity: 0.9;
}

.contact-hero {
    background: linear-gradient(135deg, #3a3a3a 0%, #2c2c2c 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
}

.contact-hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-info-section {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

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

.contact-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-item p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

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

.location-map {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.location-map h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.map-info p {
    font-size: 1.1rem;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.transport-info {
    list-style: none;
}

.transport-info li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    color: #4a4a4a;
}

.transport-info li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #c9962a;
    font-weight: 700;
}

.contact-cta {
    background-color: #f0f0f0;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    background-color: #fafafa;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 10px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.thanks-message {
    font-size: 1.1rem;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.thanks-service-info {
    background-color: #f0f0f0;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #4a4a4a;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 2.5rem;
}

.thanks-next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps ul li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    color: #5a5a5a;
}

.thanks-next-steps ul li::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #c9962a;
    font-weight: 700;
    font-size: 1.5rem;
}

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

.btn-primary,
.btn-secondary {
    padding: 0.9rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: opacity 0.3s;
}

.btn-primary {
    background-color: #1a1a1a;
    color: #ffffff;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    background-color: #e0e0e0;
    color: #2c2c2c;
}

.btn-secondary:hover {
    opacity: 0.9;
}

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

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

.legal-update {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h3 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 600;
}

.legal-content h4 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #3a3a3a;
    font-weight: 600;
}

.legal-content p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.legal-content ul li {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-content a {
    color: #c9962a;
    text-decoration: none;
    transition: opacity 0.3s;
}

.legal-content a:hover {
    opacity: 0.8;
}

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

    .nav-floating {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-floating ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text-offset h2 {
        font-size: 2.2rem;
    }

    .intro-asymmetric,
    .story-layout,
    .contact-layout {
        flex-direction: column;
    }

    .intro-left {
        padding-left: 0;
    }

    .services-header-offset {
        margin-left: 0;
    }

    .service-card {
        width: 100%;
        margin-top: 0 !important;
    }

    .form-container-asymmetric {
        margin-left: auto;
    }

    .values-content-split {
        flex-direction: column;
    }

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

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

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

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