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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f0f0f0;
    color: #666;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #fff;
    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;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #d4427c;
}

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

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

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

.hero-section {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    gap: 40px;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.hero-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    background-color: #e8e8e8;
}

.cta-button {
    display: inline-block;
    background-color: #d4427c;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #b83769;
}

.services-grid {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 280px;
}

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

.card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #e8e8e8;
}

.card-content {
    padding: 25px;
}

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

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

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

.select-service {
    width: 100%;
    padding: 14px;
    background-color: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background-color: #d4427c;
    color: #fff;
    border-color: #d4427c;
}

.select-service.selected {
    background-color: #4caf50;
    color: #fff;
    border-color: #4caf50;
}

.booking-section {
    background-color: #fff;
    padding: 80px 20px;
    margin-top: 60px;
}

.booking-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.booking-info p {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.selected-service-display {
    background-color: #f0f9ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #d4427c;
    margin-top: 20px;
}

.selected-service-display strong {
    display: block;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.selected-service-display span {
    color: #666;
    margin-right: 15px;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-button {
    padding: 16px;
    background-color: #d4427c;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #b83769;
}

.why-choose {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.why-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.why-text {
    flex: 1;
}

.why-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.feature-item p {
    color: #666;
    font-size: 15px;
}

.why-image {
    flex: 1;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    background-color: #e8e8e8;
}

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

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

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

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

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

.testimonial-author {
    font-weight: 600;
    color: #d4427c;
    font-style: normal;
}

.main-footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 60px 20px 20px;
    margin-top: 80px;
}

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

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

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

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

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

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

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

.footer-section a:hover {
    color: #d4427c;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
    color: #b0b0b0;
    font-size: 14px;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 25px;
    box-shadow: 0 -4px 12px 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;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: #d4427c;
    color: #fff;
}

.cookie-accept:hover {
    background-color: #b83769;
}

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

.cookie-reject:hover {
    background-color: #fff;
    color: #2c2c2c;
}

.page-header {
    background: linear-gradient(135deg, #d4427c 0%, #b83769 100%);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.services-detailed {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.service-detail-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #e8e8e8;
}

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

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

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

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

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

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
}

.service-cta {
    display: inline-block;
    background-color: #d4427c;
    color: #fff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    align-self: flex-start;
    transition: background-color 0.3s;
}

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

.info-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
}

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

.info-container h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c2c2c;
}

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

.info-card {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    min-width: 250px;
}

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

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

.about-story {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.story-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

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

.story-image {
    flex: 1;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    background-color: #e8e8e8;
}

.values-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

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

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

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

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

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

.team-section {
    background-color: #f9f9f9;
    padding: 80px 20px;
}

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

.team-container h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.team-intro {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 0 1 300px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.member-image {
    height: 320px;
    background-size: cover;
    background-position: center;
    background-color: #e8e8e8;
}

.team-member h3 {
    padding: 20px 20px 5px;
    font-size: 22px;
    color: #2c2c2c;
}

.member-role {
    padding: 0 20px;
    color: #d4427c;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-member p {
    padding: 0 20px 25px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.philosophy-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.philosophy-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: #2c2c2c;
}

.philosophy-content p {
    color: #666;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-content {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

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

.contact-info-section {
    flex: 1;
}

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

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #d4427c;
}

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

.contact-map-section {
    flex: 1;
}

.contact-map-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.map-placeholder {
    background-color: #e8e8e8;
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
}

.faq-section {
    background-color: #f9f9f9;
    padding: 80px 20px;
    margin-top: 60px;
}

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

.faq-container h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c2c2c;
}

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

.faq-item {
    flex: 1 1 calc(50% - 15px);
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    min-width: 280px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

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

.cta-section {
    background: linear-gradient(135deg, #d4427c 0%, #b83769 100%);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-content .cta-button {
    background-color: #fff;
    color: #d4427c;
}

.cta-content .cta-button:hover {
    background-color: #f0f0f0;
}

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.legal-container {
    background-color: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.legal-intro {
    color: #999;
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-section h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #555;
}

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

.legal-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

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

.legal-section a {
    color: #d4427c;
    text-decoration: none;
}

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

.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: #f5f5f5;
    font-weight: 600;
    color: #2c2c2c;
}

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

.thanks-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}

.thanks-container {
    background-color: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

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

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

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

.thanks-details {
    margin: 30px 0;
}

.booking-summary {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.booking-summary h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.booking-summary p {
    color: #666;
    font-size: 16px;
    margin-bottom: 8px;
}

.thanks-info {
    margin: 40px 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.thanks-info li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    font-size: 15px;
}

.thanks-info li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #d4427c;
    font-weight: 700;
}

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

.button-primary,
.button-secondary {
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.button-primary {
    background-color: #d4427c;
    color: #fff;
}

.button-primary:hover {
    background-color: #b83769;
}

.button-secondary {
    background-color: #f5f5f5;
    color: #333;
    border: 2px solid #e0e0e0;
}

.button-secondary:hover {
    background-color: #e8e8e8;
}

.thanks-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.thanks-contact p {
    color: #666;
    font-size: 15px;
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }

    .hero-section,
    .why-content,
    .story-content,
    .service-detail-card,
    .contact-grid {
        flex-direction: column;
    }

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

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

    .section-header h2,
    .values-section h2,
    .team-container h2,
    .philosophy-content h2 {
        font-size: 28px;
    }

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

    .value-card,
    .faq-item {
        flex: 1 1 100%;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

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

    .legal-container {
        padding: 30px 20px;
    }
}