* {
    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: #fefefe;
}

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

.header-card {
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #d4a574;
    letter-spacing: 1px;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    background-color: #f8f9fa;
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.nav-grid {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-card {
    padding: 10px 20px;
    text-decoration: none;
    color: #2c3e50;
    background-color: #f8f9fa;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 15px;
}

.nav-card:hover {
    background-color: #d4a574;
    color: #fff;
    transform: translateY(-2px);
}

.nav-card.active {
    background-color: #d4a574;
    color: #fff;
}

.hero-card {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #f0ebe4;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212,165,116,0.85) 0%, rgba(44,62,80,0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 40px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 22px;
    line-height: 1.5;
    opacity: 0.95;
}

.intro-section {
    padding: 80px 0;
    background-color: #fff;
}

.intro-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background-color: #fafafa;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.intro-card h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.services-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    width: calc(33.333% - 17px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #f0ebe4;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    flex-grow: 1;
    margin-bottom: 15px;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #d4a574;
    margin-top: auto;
}

.philosophy-section {
    padding: 80px 0;
    background-color: #fff;
}

.philosophy-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.philosophy-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    background-color: #f0ebe4;
}

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

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.philosophy-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #555;
}

.booking-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.booking-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.booking-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
    color: #2c3e50;
}

.booking-card > p {
    text-align: center;
    margin-bottom: 35px;
    color: #666;
    line-height: 1.7;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 15px 30px;
    background-color: #d4a574;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #c59564;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212,165,116,0.3);
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #fff;
}

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff9f0;
    border-left: 4px solid #d4a574;
    border-radius: 8px;
}

.disclaimer-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.disclaimer-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

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

.footer-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #d4a574;
}

.footer-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

.footer-card ul li {
    margin-bottom: 8px;
}

.footer-card ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    color: #fff;
    padding: 25px;
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #d4a574 0%, #c59564 100%);
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-size: 44px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 19px;
    opacity: 0.9;
}

.services-detailed {
    padding: 80px 0;
    background-color: #fff;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
    padding: 40px;
    background-color: #fafafa;
    border-radius: 12px;
}

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

.service-detail-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    background-color: #f0ebe4;
}

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

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

.service-detail-content h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.benefits-list {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.benefits-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
    color: #666;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: bold;
}

.btn-book {
    display: inline-block;
    padding: 12px 30px;
    background-color: #d4a574;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background-color: #c59564;
    transform: translateY(-2px);
}

.about-intro {
    padding: 80px 0;
    background-color: #fff;
}

.about-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text-card {
    flex: 1.2;
}

.about-text-card h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-text-card p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #555;
}

.about-image-card {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    background-color: #f0ebe4;
}

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

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #d4a574;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.approach-section {
    padding: 80px 0;
    background-color: #fff;
}

.approach-card {
    max-width: 900px;
    margin: 0 auto;
}

.approach-card h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.approach-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #d4a574;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.team-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team-intro {
    max-width: 900px;
    margin: 0 auto 40px;
}

.team-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.team-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    max-width: 1100px;
    margin: 0 auto;
    background-color: #f0ebe4;
}

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

.cta-about {
    padding: 80px 0;
    background-color: #fff;
}

.cta-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #d4a574 0%, #c59564 100%);
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cta-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 17px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background-color: #fff;
    color: #d4a574;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2c3e50;
    color: #fff;
    transform: translateY(-2px);
}

.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.contact-info-card,
.legal-info-card {
    flex: 1;
    min-width: 300px;
    background-color: #fafafa;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-info-card h2,
.legal-info-card h2 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.info-block {
    margin-bottom: 25px;
}

.info-block h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #d4a574;
}

.info-block p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.legal-text-card {
    background-color: #fafafa;
    padding: 40px;
    border-radius: 10px;
}

.legal-text-card h2 {
    font-size: 28px;
    margin-bottom: 25px;
    margin-top: 35px;
    color: #2c3e50;
}

.legal-text-card h2:first-child {
    margin-top: 0;
}

.legal-text-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #555;
}

.legal-text-card p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #666;
}

.legal-text-card a {
    color: #d4a574;
    text-decoration: none;
}

.legal-text-card a:hover {
    text-decoration: underline;
}

.url-display {
    color: #d4a574;
    font-weight: 500;
}

.legal-content {
    padding: 80px 0;
    background-color: #fff;
}

.legal-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fafafa;
    padding: 50px;
    border-radius: 10px;
}

.legal-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #2c3e50;
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #555;
}

.legal-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: 20px;
    color: #666;
}

.legal-card p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #666;
}

.legal-card ul,
.legal-card ol {
    margin: 15px 0 20px 25px;
}

.legal-card li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #666;
}

.legal-card a {
    color: #d4a574;
    text-decoration: none;
}

.legal-card a:hover {
    text-decoration: underline;
}

.legal-date {
    margin-top: 40px;
    font-style: italic;
    color: #999;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

.cookie-table th {
    background-color: #f0ebe4;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    font-size: 14px;
    color: #666;
}

.browser-instructions {
    margin: 25px 0;
}

.browser-instructions h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #d4a574;
}

.browser-instructions ol {
    margin: 10px 0 25px 20px;
}

.browser-instructions li {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 5px;
    color: #666;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #d4a574;
    color: #fff;
    font-size: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-main {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #666;
}

.thanks-details {
    background-color: #f0ebe4;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #555;
}

.thanks-info {
    text-align: left;
    margin-bottom: 35px;
}

.thanks-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.thanks-info ul {
    list-style: none;
    padding-left: 0;
}

.thanks-info li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.thanks-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: bold;
    font-size: 18px;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent;
    color: #d4a574;
    text-decoration: none;
    border: 2px solid #d4a574;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #d4a574;
    color: #fff;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .service-card {
        width: 100%;
    }

    .philosophy-layout,
    .about-layout {
        flex-direction: column;
    }

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

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

    .nav-grid {
        justify-content: center;
    }

    .approach-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }
}