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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 1px;
}

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #95a5a6;
    padding: 0.3rem 0.7rem;
    border: 1px solid #95a5a6;
    border-radius: 3px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 200;
    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: 2rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

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

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

.btn-cookie-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

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

.hero-section {
    position: relative;
    min-height: 600px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    max-width: 900px;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-overlay p {
    color: #ecf0f1;
    font-size: 1.3rem;
    max-width: 700px;
}

.intro-block {
    padding: 5rem 2rem;
    background-color: #ecf0f1;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #34495e;
    text-align: center;
}

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

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
    line-height: 1.7;
}

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

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

.services-preview {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

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

.service-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c3e50;
}

.service-card p {
    font-size: 1rem;
    margin: 0 1.5rem 1.5rem;
    color: #5d6d7e;
    line-height: 1.6;
    flex-grow: 1;
}

.service-card .price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #e67e22;
    margin: 0 1.5rem 1rem;
}

.service-card .cta-btn {
    margin: 0 1.5rem 1.5rem;
}

.cta-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #e67e22;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

.cta-btn:hover {
    background-color: #d35400;
}

.cta-btn.secondary {
    background-color: #34495e;
    margin-left: 1rem;
}

.cta-btn.secondary:hover {
    background-color: #2c3e50;
}

.testimonial-block {
    padding: 5rem 2rem;
    background-color: #34495e;
}

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

.testimonial-container blockquote {
    border-left: none;
    padding: 0;
    margin: 0;
}

.testimonial-container blockquote p {
    font-size: 1.6rem;
    font-style: italic;
    color: #ecf0f1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.testimonial-container cite {
    display: block;
    text-align: center;
    color: #bdc3c7;
    font-size: 1.1rem;
    font-style: normal;
}

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

.values-content {
    max-width: 1100px;
    margin: 0 auto;
}

.values-content h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-list {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.value-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #e67e22;
}

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

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-container h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

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

.form-group label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #34495e;
    font-weight: 600;
}

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

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

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

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

.main-footer {
    background-color: #1a1a1a;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 0.95rem;
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #f39c12;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #2c3e50;
    border-radius: 5px;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

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

.about-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.about-hero-content h1 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.4rem;
    color: #ecf0f1;
}

.about-story {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.story-text-wide {
    max-width: 900px;
    margin: 0 auto;
}

.story-text-wide h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.story-text-wide p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
    line-height: 1.8;
}

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

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.team-member {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #95a5a6;
    margin-bottom: 1rem;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.team-member .role {
    font-size: 1rem;
    color: #e67e22;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.team-member p {
    font-size: 0.95rem;
    color: #5d6d7e;
    line-height: 1.6;
}

.philosophy-block {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.philosophy-content {
    max-width: 1100px;
    margin: 0 auto;
}

.philosophy-content h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.philosophy-points {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.point {
    flex: 1;
    min-width: 280px;
}

.point h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #e67e22;
}

.point p {
    font-size: 1rem;
    color: #5d6d7e;
    line-height: 1.6;
}

.certification-section {
    padding: 4rem 2rem;
    background-color: #ecf0f1;
}

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

.cert-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.cert-content p {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.7;
}

.cta-about {
    padding: 5rem 2rem;
    background-color: #34495e;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.services-header {
    padding: 5rem 2rem;
    background-color: #2c3e50;
    text-align: center;
}

.services-header h1 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.services-header p {
    font-size: 1.2rem;
    color: #ecf0f1;
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

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

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.service-info p {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

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

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

.service-price {
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e67e22;
    margin-right: 0.5rem;
}

.price-detail {
    font-size: 0.95rem;
    color: #7f8c8d;
}

.booking-prompt {
    padding: 5rem 2rem;
    background-color: #ecf0f1;
    text-align: center;
}

.booking-prompt-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.booking-prompt-content p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 2rem;
}

.contact-header {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    text-align: center;
}

.contact-header h1 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: #ecf0f1;
}

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

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-block {
    flex: 1;
    min-width: 280px;
}

.contact-block h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-block p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.7;
}

.email-display {
    font-weight: 600;
    color: #e67e22;
}

.note {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.map-section {
    padding: 4rem 2rem;
    background-color: #ecf0f1;
}

.map-container {
    max-width: 1100px;
    margin: 0 auto;
}

.map-placeholder {
    background-color: #bdc3c7;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
}

.map-placeholder p {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

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

.faq-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #e67e22;
}

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

.booking-reminder {
    padding: 5rem 2rem;
    background-color: #34495e;
    text-align: center;
}

.booking-reminder-content h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.booking-reminder-content p {
    font-size: 1.1rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

.thanks-hero {
    padding: 6rem 2rem;
    background-color: #ffffff;
    text-align: center;
}

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

.thanks-icon {
    font-size: 5rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: #7f8c8d;
    margin-bottom: 2.5rem;
}

.confirmation-details {
    background-color: #ecf0f1;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.confirmation-details p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.confirmation-list li {
    font-size: 0.95rem;
    color: #5d6d7e;
    margin-bottom: 0.6rem;
    padding-left: 1.5rem;
    position: relative;
}

.confirmation-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e67e22;
    font-weight: bold;
}

.service-selected {
    font-weight: 600;
    color: #e67e22;
    margin-top: 1rem;
}

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

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.next-steps p {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.7;
}

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

.social-proof {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.social-content {
    max-width: 1000px;
    margin: 0 auto;
}

.social-content h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: #2c3e50;
}

.testimonials-mini {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonials-mini blockquote {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonials-mini blockquote p {
    font-size: 1.1rem;
    font-style: italic;
    color: #34495e;
    margin-bottom: 1rem;
}

.testimonials-mini cite {
    display: block;
    text-align: right;
    color: #7f8c8d;
    font-size: 0.95rem;
    font-style: normal;
}

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

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.update-date {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #5d6d7e;
}

.legal-content p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.legal-content ul li {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
    }

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

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .story-wrapper {
        flex-direction: column;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        max-width: 100%;
    }

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

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

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

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

    .values-list {
        flex-direction: column;
    }

    .philosophy-points {
        flex-direction: column;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

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

    .cta-btn.secondary {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}