* {
    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: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b2635;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #8b2635;
}

.hero-magazine {
    padding: 60px 40px;
    background-color: #f8f9fa;
}

.hero-content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text-column {
    flex: 1;
}

.hero-text-column h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 30px;
}

.hero-image-column {
    flex: 1;
}

.hero-image-column img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #8b2635;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #6d1d28;
}

.intro-columns {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-narrow {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-narrow p {
    font-size: 1.1rem;
    color: #6c757d;
}

.intro-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.intro-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.intro-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #f0f0f0;
}

.intro-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.intro-card p {
    padding: 0 20px 20px;
    color: #6c757d;
}

.services-showcase {
    padding: 80px 40px;
    background-color: #ffffff;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.services-header p {
    font-size: 1.2rem;
    color: #6c757d;
}

.services-magazine-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-feature-large {
    display: flex;
    gap: 40px;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.service-image-wrap {
    flex: 1;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e9ecef;
}

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

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 1.05rem;
    color: #6c757d;
    margin-bottom: 15px;
}

.service-duration {
    font-weight: 600;
    color: #495057;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b2635;
    margin: 10px 0 20px;
}

.btn-select-service {
    padding: 12px 28px;
    background-color: #8b2635;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #6d1d28;
}

.services-dual-column {
    display: flex;
    gap: 30px;
}

.service-card-compact {
    flex: 1;
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    padding-bottom: 20px;
}

.service-card-compact img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #f0f0f0;
}

.service-card-compact h3 {
    padding: 20px 20px 10px;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.service-card-compact p {
    padding: 0 20px;
    color: #6c757d;
    margin-bottom: 10px;
}

.service-card-compact .service-price {
    padding: 0 20px;
    margin: 10px 0;
}

.service-card-compact .btn-select-service {
    margin: 0 20px;
}

.service-feature-offset {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 40px 0;
}

.service-content-left {
    flex: 1.2;
}

.service-content-left h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-content-left p {
    font-size: 1.05rem;
    color: #6c757d;
    margin-bottom: 15px;
}

.service-image-offset {
    flex: 0.8;
}

.service-image-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e9ecef;
}

.service-full-width {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    padding: 50px;
}

.service-wide-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-wide-text {
    flex: 1;
}

.service-wide-text h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-wide-text p {
    font-size: 1.05rem;
    color: #495057;
    margin-bottom: 12px;
}

.service-wide-image {
    flex: 1;
}

.service-wide-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: #dee2e6;
}

.trust-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.trust-content-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.trust-text {
    flex: 1.5;
}

.trust-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.testimonial {
    background-color: #ffffff;
    padding: 30px;
    border-left: 4px solid #8b2635;
    margin-bottom: 25px;
    border-radius: 4px;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: #495057;
    margin-bottom: 10px;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #6c757d;
}

.trust-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
}

.stat-box {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #8b2635;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: #6c757d;
}

.booking-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.booking-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.booking-header p {
    font-size: 1.05rem;
    color: #6c757d;
}

.booking-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #495057;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b2635;
}

.form-group input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

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

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

.btn-submit:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

.why-choose {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.why-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.why-item {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.why-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.why-item p {
    color: #6c757d;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 40px 20px;
}

.footer-columns {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #ffffff;
}

.email-text {
    color: #bdc3c7;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 4px;
    font-size: 0.9rem;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #bdc3c7;
}

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

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

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

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

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.page-hero {
    background: linear-gradient(135deg, #8b2635 0%, #6d1d28 100%);
    padding: 80px 40px;
    text-align: center;
    color: #ffffff;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story {
    padding: 80px 40px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.story-section {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: #f0f0f0;
}

.mission-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.mission-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.mission-section p {
    font-size: 1.15rem;
    color: #6c757d;
    line-height: 1.8;
}

.values-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 80px;
}

.value-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #8b2635;
}

.value-card p {
    color: #6c757d;
    line-height: 1.6;
}

.team-section {
    margin-bottom: 80px;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.team-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #6c757d;
    margin-bottom: 50px;
}

.team-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.team-member {
    flex: 0 1 300px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    background-color: #f0f0f0;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.team-member p {
    color: #6c757d;
}

.approach-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.approach-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.approach-point {
    background-color: #ffffff;
    padding: 30px;
    border-left: 4px solid #8b2635;
    border-radius: 4px;
}

.approach-point h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.approach-point p {
    color: #6c757d;
    line-height: 1.7;
}

.contact-page {
    padding: 80px 40px;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #8b2635;
}

.contact-item p {
    font-size: 1.05rem;
    color: #6c757d;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.services-page {
    padding: 80px 40px;
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
}

.services-list h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.service-item-detailed {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.service-item-detailed h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-item-detailed p {
    font-size: 1.05rem;
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    color: #495057;
}

.service-features li:before {
    content: "✓ ";
    color: #8b2635;
    font-weight: bold;
    margin-right: 10px;
}

.legal-page {
    padding: 80px 40px;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #495057;
}

.legal-container p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-container ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-container li {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 8px;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #f8f9fa;
    padding: 60px;
    border-radius: 8px;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #8b2635;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.booking-summary {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: left;
}

.booking-summary h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.booking-detail {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.booking-detail:last-child {
    border-bottom: none;
}

.booking-detail strong {
    color: #495057;
}

@media (max-width: 768px) {
    .hero-content-split,
    .intro-grid,
    .services-dual-column,
    .service-feature-large,
    .service-feature-offset,
    .service-wide-content,
    .trust-content-asymmetric,
    .footer-columns,
    .why-grid,
    .story-section,
    .values-grid,
    .team-grid,
    .contact-info {
        flex-direction: column;
    }

    .hero-text-column h1 {
        font-size: 2rem;
    }

    .form-row {
        flex-direction: column;
    }

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

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