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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
}

.cookie-buttons {
    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-color: #48bb78;
    color: #ffffff;
}

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

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

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

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #d53f8c;
}

.main-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

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

.main-nav a:hover {
    color: #d53f8c;
}

.ad-notice {
    font-size: 12px;
    color: #718096;
    font-style: italic;
}

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

.hero-image {
    width: 100%;
    height: 100%;
}

.hero-image 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;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 20px;
    max-width: 600px;
}

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

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

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

.card-image {
    width: 100%;
    height: 250px;
    background-color: #e2e8f0;
}

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

.card-text {
    padding: 30px;
}

.card-text h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d3748;
}

.card-text p {
    color: #4a5568;
    line-height: 1.7;
}

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

.services-preview h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2d3748;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 220px;
    background-color: #e2e8f0;
}

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: #2d3748;
}

.service-card p {
    margin: 0 20px 15px;
    color: #4a5568;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #d53f8c;
    margin: 0 20px 20px;
}

.select-service {
    margin: 0 20px 20px;
    padding: 12px 24px;
    background-color: #d53f8c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    width: calc(100% - 40px);
    transition: background-color 0.3s ease;
}

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

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

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

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

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

.booking-info p {
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.7;
}

.selected-service-display {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #d53f8c;
}

.booking-form {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 16px;
    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: #d53f8c;
}

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

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

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

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

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

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

.footer-col p {
    color: #a0aec0;
    line-height: 1.7;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 20px;
    text-align: center;
    color: #a0aec0;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

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

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

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

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

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

.content-card.reverse {
    flex-direction: row-reverse;
}

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

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

.card-image-large {
    flex: 1;
    min-width: 300px;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

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

.card-text-full h2,
.card-text-side h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2d3748;
}

.card-text-full p,
.card-text-side p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.values-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #4a5568;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d53f8c;
    font-weight: 700;
}

.services-detail {
    padding: 60px 0;
}

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

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #d53f8c;
    margin-bottom: 20px;
}

.service-detail-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #4a5568;
}

.service-features li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: #d53f8c;
}

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

.service-cta:hover {
    background-color: #b83280;
}

.contact-section {
    padding: 60px 0;
}

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

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

.contact-info-box h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2d3748;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #d53f8c;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.7;
}

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

.map-placeholder {
    background-color: #f7fafc;
    border: 2px dashed #cbd5e0;
    border-radius: 8px;
    padding: 80px 40px;
    text-align: center;
}

.map-placeholder p {
    color: #4a5568;
    margin-bottom: 20px;
}

.contact-cta {
    display: inline-block;
    padding: 12px 28px;
    background-color: #d53f8c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.contact-cta:hover {
    background-color: #b83280;
}

.thanks-section {
    padding: 120px 0;
    text-align: center;
}

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

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

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

.thanks-content p {
    color: #4a5568;
    font-size: 18px;
    margin-bottom: 20px;
}

.thanks-details {
    background-color: #f7fafc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #b83280;
}

.btn-secondary {
    background-color: transparent;
    color: #d53f8c;
    border: 2px solid #d53f8c;
}

.btn-secondary:hover {
    background-color: #d53f8c;
    color: #ffffff;
}

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

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

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2d3748;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2d3748;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #4a5568;
}

.legal-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.legal-content ul li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

    .card-grid,
    .services-grid {
        flex-direction: column;
    }

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

    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}