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

.ad-notice {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.85rem;
    border-bottom: 1px solid #e0d4a8;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #d946a6;
}

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

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

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

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

.hero-main {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #f5e6ef;
}

.hero-main 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(217,70,166,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    max-width: 900px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-overlay p {
    font-size: 1.3rem;
    max-width: 700px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

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

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

.card-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.info-card {
    flex: 1;
}

.info-card h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.info-card p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #4a5568;
}

.image-card {
    flex: 1;
    background-color: #e8d4e0;
}

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

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

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

.service-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.5rem;
    color: #2c3e50;
}

.service-card p {
    padding: 0 20px 15px;
    color: #4a5568;
}

.service-card .price {
    padding: 15px 20px 20px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #d946a6;
}

.cta-inline {
    text-align: center;
    margin-top: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #d946a6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.benefits-section {
    padding: 70px 0;
    background-color: #f8f4f6;
}

.benefits-layout {
    display: flex;
    gap: 30px;
}

.benefit-card {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #d946a6;
}

.benefit-card p {
    color: #4a5568;
}

.workshop-details {
    padding: 80px 0;
    background-color: #ffffff;
}

.detail-cards {
    display: flex;
    gap: 40px;
}

.detail-large {
    flex: 2;
}

.detail-large h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.detail-large p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #4a5568;
}

.detail-large img {
    width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 8px;
    object-fit: cover;
    background-color: #f0e6ed;
}

.detail-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-box {
    background-color: #faf8f9;
    padding: 25px;
    border-left: 4px solid #d946a6;
    border-radius: 4px;
}

.info-box h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.info-box p {
    color: #4a5568;
    font-size: 0.95rem;
}

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

.booking-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

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

.booking-card > p {
    text-align: center;
    margin-bottom: 35px;
    color: #4a5568;
}

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

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

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

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

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

.btn-submit {
    padding: 15px;
    background-color: #d946a6;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonials {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.testimonial-cards {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background-color: #faf8f9;
    padding: 30px;
    border-radius: 8px;
    border-top: 3px solid #d946a6;
}

.testimonial-card p {
    font-style: italic;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #d946a6;
    font-size: 1.2rem;
}

.footer-section p {
    color: #bdc3c7;
}

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

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

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #d946a6;
}

.footer-disclaimer {
    background-color: #34495e;
    padding: 25px;
    border-radius: 5px;
    margin-bottom: 30px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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-content a {
    color: #d946a6;
}

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

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

.btn-accept {
    background-color: #d946a6;
    color: #ffffff;
}

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

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

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

.page-header {
    background-color: #f8f4f6;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.page-header p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #4a5568;
    line-height: 1.7;
}

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

.feature-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #4a5568;
    line-height: 1.6;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d946a6;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background-color: #faf8f9;
    border-radius: 8px;
}

.meta-item {
    color: #2c3e50;
}

.price-highlight {
    color: #d946a6;
    font-size: 1.5rem;
    font-weight: 600;
}

.service-detail-image {
    flex: 1;
    background-color: #f0e6ed;
}

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

.cta-section {
    background-color: #d946a6;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-section .btn-primary {
    background-color: #ffffff;
    color: #d946a6;
}

.cta-section .btn-primary:hover {
    background-color: #f5f5f5;
}

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

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    padding: 20px;
    background-color: #faf8f9;
    border-left: 4px solid #d946a6;
    border-radius: 4px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-item p {
    color: #4a5568;
    margin: 0;
    font-size: 1rem;
}

.contact-map {
    flex: 1;
    background-color: #e8d4e0;
    min-height: 500px;
    border-radius: 8px;
}

.about-page-header {
    background-color: #faf8f9;
    padding: 80px 0;
}

.about-page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
}

.about-page-header p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.7;
}

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

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

.about-section h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.about-image {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    background-color: #f0e6ed;
}

.values-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    flex: 1;
    padding: 30px;
    background-color: #faf8f9;
    border-radius: 8px;
    border-top: 3px solid #d946a6;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-card p {
    color: #4a5568;
    font-size: 1rem;
}

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

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

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

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: #4a5568;
    line-height: 1.7;
}

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

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

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background-color: #faf8f9;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    padding: 60px 40px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.thanks-icon {
    font-size: 4rem;
    color: #d946a6;
    margin-bottom: 20px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-content .btn-primary {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .card-grid,
    .service-cards,
    .benefits-layout,
    .detail-cards,
    .testimonial-cards,
    .footer-content,
    .service-detail-card,
    .service-detail-card.reverse,
    .contact-layout,
    .values-grid {
        flex-direction: column;
    }

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

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

    .nav-menu {
        gap: 15px;
        font-size: 0.9rem;
    }

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

    .page-header h1,
    .about-page-header h1 {
        font-size: 2rem;
    }
}