* {
    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;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

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

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #c5979d;
    letter-spacing: -0.5px;
}

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

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.cta-button {
    background-color: #c5979d;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #b38289;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 151, 157, 0.3);
}

.hero-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.hero-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c2c2c;
    font-weight: 700;
}

.hero-text p {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
}

.hero-cta {
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 44, 44, 0.3);
}

.hero-image {
    flex: 1;
    background-color: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
}

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

.values-section {
    background-color: #fff;
    padding: 100px 40px;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.value-card {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    background-color: #fafafa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 48px;
    color: #c5979d;
    margin-bottom: 20px;
}

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

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

.featured-services {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.featured-services h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c2c2c;
    font-weight: 700;
}

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

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

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

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #f5f5f5;
}

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

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

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

.price {
    font-size: 28px;
    font-weight: 700;
    color: #c5979d;
    margin-bottom: 18px;
}

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

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

.booking-section {
    background-color: #f9f9f9;
    padding: 100px 40px;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.booking-info {
    flex: 1;
}

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

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

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #555;
}

.feature-icon {
    font-size: 20px;
    color: #c5979d;
    font-weight: 700;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    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: #c5979d;
}

.submit-button {
    background-color: #c5979d;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #b38289;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(197, 151, 157, 0.3);
}

.testimonials-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.testimonials-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c2c2c;
    font-weight: 700;
}

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

.testimonial {
    flex: 1;
    background-color: #fff;
    padding: 36px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #999;
    font-weight: 600;
}

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

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

.footer-section {
    flex: 1;
}

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

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

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.cookie-content a {
    color: #c5979d;
    text-decoration: none;
}

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

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

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

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

.cookie-reject {
    background-color: #e0e0e0;
    color: #555;
}

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

.page-hero {
    background: linear-gradient(135deg, #c5979d 0%, #b38289 100%);
    padding: 80px 40px;
    text-align: center;
    color: #fff;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 20px;
    opacity: 0.95;
}

.about-story {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 1;
    background-color: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
}

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

.story-text {
    flex: 1;
}

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

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

.philosophy-section {
    background-color: #f9f9f9;
    padding: 100px 40px;
}

.philosophy-container {
    max-width: 1400px;
    margin: 0 auto;
}

.philosophy-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c2c2c;
}

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

.philosophy-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #fff;
    padding: 36px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.philosophy-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #2c2c2c;
}

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

.team-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c2c2c;
}

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

.team-member {
    flex: 1;
    max-width: 350px;
    text-align: center;
}

.member-image {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #f5f5f5;
}

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

.member-info h3 {
    font-size: 24px;
    margin-bottom: 6px;
    color: #2c2c2c;
}

.member-role {
    font-size: 15px;
    color: #c5979d;
    font-weight: 600;
    margin-bottom: 12px;
}

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

.values-detail {
    background-color: #fff;
    padding: 100px 40px;
}

.values-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.values-text {
    flex: 1;
}

.values-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c2c2c;
}

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

.inline-cta {
    display: inline-block;
    background-color: #c5979d;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    background-color: #b38289;
    transform: translateY(-2px);
}

.values-visual {
    flex: 1;
    background-color: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
}

.values-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-content {
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

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

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

.service-detail-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

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

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

.service-book-btn {
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-book-btn:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

.service-detail-image {
    flex: 1;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f5f5f5;
}

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

.service-info {
    background-color: #f9f9f9;
    padding: 80px 40px;
}

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

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

.info-blocks {
    display: flex;
    gap: 40px;
}

.info-block {
    flex: 1;
    background-color: #fff;
    padding: 32px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

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

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

.contact-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

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

.contact-info {
    flex: 1;
}

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

.contact-info p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 32px;
    color: #c5979d;
}

.contact-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c2c2c;
}

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

.contact-map {
    flex: 1;
    background-color: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 500px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.directions-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    background-color: #f9f9f9;
}

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

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

.direction-card {
    flex: 1;
    background-color: #fff;
    padding: 32px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

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

.direction-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 10px;
}

.cta-contact {
    background-color: #c5979d;
    padding: 80px 40px;
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

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

.large-cta {
    background-color: #fff;
    color: #2c2c2c;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.large-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.thanks-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 40px;
    text-align: center;
}

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

.thanks-icon {
    font-size: 72px;
    color: #5cb85c;
    margin-bottom: 24px;
}

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

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

.service-confirmation {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.selected-service-text {
    font-size: 16px;
    color: #555;
}

.thanks-next h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c2c2c;
    text-align: left;
}

.next-steps {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.next-steps li {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #c5979d;
    font-weight: 700;
}

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

.thanks-button {
    background-color: #c5979d;
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.thanks-button:hover {
    background-color: #b38289;
    transform: translateY(-2px);
}

.thanks-button-secondary {
    background-color: #e0e0e0;
    color: #555;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

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

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

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

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

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

.legal-container h2 {
    font-size: 24px;
    margin-top: 36px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.legal-container h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #333;
}

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

.legal-container ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

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

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

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

@media (max-width: 1200px) {
    .hero-content,
    .story-layout,
    .values-split,
    .booking-container,
    .contact-layout,
    .service-detail-content {
        flex-direction: column;
    }

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

    .services-cards {
        justify-content: center;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        gap: 20px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .values-grid,
    .testimonials-grid,
    .team-grid,
    .directions-grid,
    .info-blocks {
        flex-direction: column;
    }

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

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

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

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

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