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

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.navigation {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #d4145a;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #d4145a;
}

.nav-link.active {
    color: #d4145a;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #d4145a;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #fef5f7 0%, #fff8fa 100%);
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a5568;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    background-color: #d4145a;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #b01049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 20, 90, 0.3);
}

.intro-split {
    display: flex;
    align-items: center;
}

.intro-image {
    flex: 1;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.intro-text {
    flex: 1;
    padding: 80px 60px;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.section-header-center {
    text-align: center;
    padding: 80px 20px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.section-header-center h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 18px;
    color: #6c757d;
}

.services-preview {
    background-color: #fafbfc;
    padding-bottom: 80px;
}

.services-grid-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-image {
    flex: 1;
    overflow: hidden;
}

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

.service-details {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #d4145a;
    margin-bottom: 24px;
}

.service-select,
.service-select-detailed {
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-select:hover,
.service-select-detailed:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

.ingredients-split {
    display: flex;
    align-items: stretch;
}

.ingredients-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.ingredients-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.ingredients-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 28px;
}

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

.ingredients-list li {
    padding: 16px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 16px;
    line-height: 1.7;
}

.ingredients-list li:last-child {
    border-bottom: none;
}

.ingredients-list strong {
    color: #2c3e50;
}

.ingredients-list a {
    color: #d4145a;
    text-decoration: none;
    font-weight: 600;
}

.ingredients-list a:hover {
    text-decoration: underline;
}

.ingredients-image {
    flex: 1;
    overflow: hidden;
}

.ingredients-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.booking-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fef5f7 0%, #f8f9fa 100%);
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
}

.booking-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.booking-container > p {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 40px;
}

.booking-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.form-group {
    flex: 1;
    margin-bottom: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    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: #d4145a;
}

.submit-button {
    width: 100%;
    background-color: #d4145a;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #b01049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 20, 90, 0.3);
}

.disclaimer-section {
    padding: 60px 20px;
    background-color: #fff8e5;
}

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

.disclaimer-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #856404;
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #533f03;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

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

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

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

.footer-links a:hover {
    color: #ffffff;
}

.references {
    list-style: decimal;
    padding-left: 20px;
    font-size: 14px;
}

.references li {
    margin-bottom: 10px;
}

.references a {
    color: #bdc3c7;
    text-decoration: none;
}

.references a:hover {
    color: #ffffff;
    text-decoration: underline;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #4a5568;
}

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

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

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

.cookie-btn-accept:hover {
    background-color: #b01049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 20, 90, 0.3);
}

.cookie-btn-reject {
    background-color: #e9ecef;
    color: #2c3e50;
}

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

.page-hero {
    background: linear-gradient(135deg, #d4145a 0%, #9c0f46 100%);
    padding: 100px 20px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.about-split {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.about-text {
    flex: 1;
    padding: 60px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.about-image {
    flex: 1;
    overflow: hidden;
}

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

.values-section {
    padding: 80px 20px;
    background-color: #fafbfc;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #d4145a;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.process-split {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.process-image {
    flex: 1;
    overflow: hidden;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.process-text {
    flex: 1;
    padding: 60px;
}

.process-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.process-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

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

.service-detail-split {
    display: flex;
    align-items: stretch;
    margin-bottom: 60px;
}

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

.service-detail-image {
    flex: 1;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.price-tag {
    font-size: 36px;
    font-weight: 700;
    color: #d4145a;
    margin-bottom: 24px;
}

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

.service-includes {
    list-style: none;
    margin: 24px 0;
}

.service-includes li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #4a5568;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4145a;
    font-weight: 700;
}

.booking-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fef5f7 0%, #f8f9fa 100%);
    text-align: center;
}

.booking-cta-content h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.booking-cta-content p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 32px;
}

.cta-button-large {
    display: inline-block;
    background-color: #d4145a;
    color: #ffffff;
    padding: 20px 48px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background-color: #b01049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 20, 90, 0.3);
}

.contact-split {
    display: flex;
    align-items: stretch;
    padding: 80px 0;
}

.contact-info {
    flex: 1;
    padding: 60px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #d4145a;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

.email-text {
    font-family: monospace;
    background-color: #f8f9fa;
    padding: 8px 12px;
    border-radius: 4px;
    display: inline-block;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #d4145a;
    border-radius: 4px;
}

.contact-note p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.directions-section {
    padding: 80px 20px;
    background-color: #fafbfc;
}

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

.directions-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    text-align: center;
    color: #1a1a1a;
}

.directions-content > p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    text-align: center;
    margin-bottom: 48px;
}

.directions-grid {
    display: flex;
    gap: 32px;
}

.direction-item {
    flex: 1;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.direction-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #d4145a;
}

.direction-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 20px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
}

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

.thanks-container h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 32px;
}

.service-confirmation {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 16px;
    color: #2c3e50;
}

.thanks-next-steps {
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.next-steps-list {
    list-style: decimal;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
    padding-left: 24px;
}

.next-steps-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 12px;
}

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

.cta-button-secondary {
    display: inline-block;
    background-color: #e9ecef;
    color: #2c3e50;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: #d3d7db;
    transform: translateY(-2px);
}

.preparation-tips {
    padding: 80px 20px;
    background-color: #fafbfc;
}

.tips-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tips-container h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.tips-grid {
    display: flex;
    gap: 32px;
}

.tip-item {
    flex: 1;
    padding: 28px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.tip-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #d4145a;
}

.tip-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.legal-page {
    padding: 40px 20px 80px;
}

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

.legal-container h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 40px;
}

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

.legal-container h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 20px;
    padding-left: 28px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 8px;
}

.legal-container a {
    color: #d4145a;
    text-decoration: none;
}

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

.legal-date {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    font-style: italic;
    color: #6c757d;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

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

.cookies-table td {
    color: #4a5568;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .about-split,
    .process-split,
    .contact-split,
    .ingredients-split,
    .service-card,
    .service-detail-split {
        flex-direction: column;
    }

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

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

    .hero-content,
    .intro-text,
    .about-text,
    .process-text,
    .contact-info,
    .ingredients-content,
    .service-details,
    .service-detail-content {
        padding: 40px 20px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-link {
        font-size: 14px;
    }

    .hero-content h1,
    .page-hero-content h1 {
        font-size: 32px;
    }

    .section-header-center h2 {
        font-size: 28px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn-accept,
    .cookie-btn-reject {
        width: 100%;
    }

    .values-grid,
    .directions-grid,
    .tips-grid {
        flex-direction: column;
    }

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