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

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

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

.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: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #c59563;
}

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

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

.header-main {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.brand h1 {
    font-size: 28px;
    color: #2c2c2c;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #999;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c2c2c;
    transition: 0.3s;
}

.hero-section {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #f5f5f5;
}

.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), rgba(44, 44, 44, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 700px;
    padding: 0 20px;
}

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #2c2c2c;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #d4a574;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

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

.intro-card {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.intro-card h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

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

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

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    flex: 0 0 calc(33.333% - 20px);
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

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

.card-image {
    height: 250px;
    overflow: hidden;
    background: #f0f0f0;
}

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

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

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

.card-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.card-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    flex: 1;
}

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

.select-service {
    padding: 12px 24px;
    background: #2c2c2c;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #d4a574;
    transform: translateY(-2px);
}

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

.booking-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.booking-info {
    flex: 1;
}

.booking-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.booking-info p {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.info-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.highlight-item .icon {
    font-size: 20px;
    color: #d4a574;
    font-weight: bold;
}

.highlight-item p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.booking-form-container {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

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

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

.form-group input[readonly] {
    background: #f5f5f5;
    color: #333;
    font-weight: 600;
}

.submit-button {
    padding: 15px 30px;
    background: #d4a574;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.why-us-section {
    padding: 80px 0;
    background: #fff;
}

.why-us-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c2c2c;
}

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

.feature-card {
    flex: 0 0 calc(50% - 15px);
    background: #fafafa;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #d4a574;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

.footer {
    background: #2c2c2c;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-col {
    flex: 1;
    min-width: 220px;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #bbb;
    margin-bottom: 10px;
}

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

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

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.disclaimer {
    font-size: 12px;
    color: #999;
    margin-top: 15px;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.contact-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #d4a574, #c59563);
    color: #fff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 18px;
    opacity: 0.95;
}

.contact-content {
    padding: 80px 0;
}

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

.contact-info {
    flex: 1;
    min-width: 300px;
}

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

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

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

.hours-list {
    list-style: none;
}

.hours-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.about-hero {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.about-hero p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-content {
    padding: 80px 0;
}

.about-section {
    margin-bottom: 60px;
}

.about-flex {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

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

.about-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #2c2c2c, #444);
    color: #fff;
    text-align: center;
}

.services-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.services-hero p {
    font-size: 18px;
    opacity: 0.95;
}

.services-content {
    padding: 80px 0;
}

.service-detail {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-image {
    flex: 0 0 400px;
    height: 300px;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-text {
    flex: 1;
    min-width: 300px;
}

.service-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    color: #d4a574;
    font-weight: 700;
}

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

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

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

.legal-page ul {
    margin: 15px 0 15px 30px;
}

.legal-page ul li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

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

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    font-size: 80px;
    color: #d4a574;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.thanks-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.thanks-content a {
    display: inline-block;
    padding: 12px 30px;
    background: #d4a574;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-content a:hover {
    background: #c59563;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content h2 {
        font-size: 32px;
    }

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

    .service-card {
        flex: 0 0 100%;
    }

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

    .feature-card {
        flex: 0 0 100%;
    }

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

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

    .service-image {
        flex: 0 0 auto;
        width: 100%;
    }
}
