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

:root {
    --primary-color: #D4869C;
    --secondary-color: #7A4D5F;
    --accent-color: #F4C7D8;
    --dark-color: #2C2C2C;
    --light-color: #F9F9F9;
    --white: #FFFFFF;
    --border-color: #E5E5E5;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--primary-color);
    color: var(--white);
}

.btn-accept:hover {
    background: var(--secondary-color);
}

.btn-reject {
    background: transparent;
    color: var(--dark-color);
    border: 2px solid var(--border-color);
}

.btn-reject:hover {
    border-color: var(--dark-color);
}

.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    font-size: 26px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.main-nav a {
    font-weight: 500;
    color: var(--dark-color);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: all 0.3s ease;
}

.hero-section {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1604654894610-df63bc536371?w=1600');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 134, 156, 0.85) 0%, rgba(122, 77, 95, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 700px;
    padding: 0 20px;
}

.hero-text h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.intro-cards {
    padding: 80px 0;
    background: var(--light-color);
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.info-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.info-card p {
    color: #666;
    line-height: 1.7;
}

.story-section {
    padding: 100px 0;
}

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

.story-image {
    flex: 1;
    min-width: 300px;
}

.story-image img {
    border-radius: 16px;
    box-shadow: var(--shadow);
}

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

.story-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

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

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
    display: inline-block;
}

.services-showcase {
    padding: 100px 0;
    background: var(--light-color);
}

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

.section-header h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card.featured {
    border: 3px solid var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
}

.service-image {
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: var(--secondary-color);
}

.testimonials-section {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

.testimonials-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    background: var(--light-color);
    padding: 35px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-rating {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 15px;
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

.booking-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, #FFF 100%);
}

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

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

.booking-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

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

.benefits-list li {
    padding: 12px 0;
    font-size: 16px;
    color: #555;
}

.booking-form-container {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-hover);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.why-choose-section {
    padding: 100px 0;
    background: var(--white);
}

.why-choose-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.feature-card {
    background: var(--light-color);
    padding: 35px 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.gallery-preview {
    padding: 100px 0;
    background: var(--light-color);
}

.gallery-preview h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.gallery-item {
    flex: 1;
    min-width: 260px;
    max-width: 290px;
    height: 290px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
}

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

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

.btn-primary-large {
    display: inline-block;
    padding: 18px 50px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.main-footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 30px;
}

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

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

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-col p {
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 15px;
}

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

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

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-link {
    color: var(--accent-color);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta-btn {
    padding: 16px 32px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.page-hero {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

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

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

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

.content-card {
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    margin-bottom: 60px;
    box-shadow: var(--shadow);
}

.content-card h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

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

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

.timeline-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-item {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background: var(--light-color);
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
}

.timeline-year {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 100px;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
}

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

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

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

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    text-align: center;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

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

.team-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

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

.team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.team-image {
    height: 280px;
    overflow: hidden;
}

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

.team-card h3 {
    font-size: 24px;
    margin: 25px 0 10px;
    color: var(--secondary-color);
}

.team-role {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.team-card p {
    padding: 0 20px 25px;
    color: #666;
    line-height: 1.6;
}

.certification-section {
    background: var(--light-color);
    padding: 50px;
    border-radius: 16px;
    margin-bottom: 60px;
}

.certification-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

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

.certification-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    color: #555;
    font-size: 16px;
}

.certification-list li::before {
    content: '✓ ';
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 10px;
}

.mission-section {
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.mission-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

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

.cta-section {
    padding: 100px 0;
    background: var(--light-color);
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #666;
}

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

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 70px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.service-detail-card.featured-service {
    border: 3px solid var(--primary-color);
    position: relative;
}

.featured-badge-large {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    z-index: 10;
}

.service-detail-content {
    flex: 1;
    min-width: 320px;
    padding: 50px;
}

.service-detail-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    gap: 20px;
}

.service-detail-header h2 {
    font-size: 32px;
    color: var(--secondary-color);
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.service-detail-body p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.service-detail-body h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: var(--secondary-color);
}

.service-includes {
    list-style: none;
    margin-bottom: 25px;
}

.service-includes li {
    padding: 10px 0;
    color: #555;
}

.service-includes li::before {
    content: '✓ ';
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 10px;
}

.service-duration {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.service-detail-image {
    flex: 1;
    min-width: 320px;
    max-width: 500px;
}

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

.service-extras {
    padding: 80px 0;
    background: var(--light-color);
}

.service-extras h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.extras-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.extra-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    text-align: center;
}

.extra-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.extra-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.extra-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

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

.faq-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 550px;
}

.faq-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.faq-card p {
    color: #666;
    line-height: 1.7;
}

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

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

.contact-info-section {
    flex: 1;
    min-width: 320px;
}

.contact-info-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-info-section > p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-info-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 12px;
}

.contact-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-info-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-info-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.contact-note {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-note h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-note p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.contact-map-section {
    flex: 1;
    min-width: 320px;
}

.contact-map-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.map-placeholder {
    background: var(--light-color);
    height: 350px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border: 2px solid var(--border-color);
}

.map-content {
    text-align: center;
    color: #666;
}

.map-content p:first-child {
    font-size: 48px;
    margin-bottom: 15px;
}

.location-directions {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.location-directions h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.location-directions ul {
    list-style: none;
}

.location-directions li {
    padding: 12px 0;
    color: #555;
    line-height: 1.6;
}

.location-directions strong {
    color: var(--secondary-color);
}

.visit-us-section {
    padding: 80px 0;
    background: var(--light-color);
}

.visit-us-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.visit-us-section > .container > p {
    text-align: center;
    font-size: 17px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.visit-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.visit-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 280px;
    max-width: 360px;
}

.visit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.visit-card p {
    color: #666;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: var(--shadow-hover);
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.thanks-message {
    font-size: 20px;
    color: #666;
    margin-bottom: 50px;
}

.thanks-details {
    background: var(--light-color);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 50px;
}

.thanks-details h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.thanks-details p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
}

.selected-service-info {
    margin-top: 25px;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.next-steps {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h3 {
    font-size: 26px;
    margin-bottom: 30px;
    color: var(--secondary-color);
    text-align: center;
}

.next-steps ul {
    list-style: none;
}

.next-steps li {
    margin-bottom: 30px;
}

.next-steps strong {
    font-size: 18px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.next-steps p {
    color: #666;
    line-height: 1.7;
}

.thanks-info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin-bottom: 50px;
}

.info-card-small {
    background: var(--light-color);
    padding: 25px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    text-align: left;
}

.info-card-small h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.info-card-small p {
    color: #666;
    line-height: 1.6;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.social-encourage {
    padding: 30px;
    background: var(--light-color);
    border-radius: 12px;
}

.social-encourage h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.social-encourage p {
    color: #666;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.last-updated {
    color: #999;
    font-size: 14px;
    margin-bottom: 40px;
    display: block;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 12px;
    color: #555;
}

.legal-content a {
    color: var(--primary-color);
    font-weight: 600;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--light-color);
    color: var(--secondary-color);
    font-weight: 600;
}

.cookie-table td {
    color: #555;
}

@media (max-width: 768px) {
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .main-nav.active {
        max-height: 400px;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .main-nav li {
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-text h2 {
        font-size: 32px;
    }

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

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

    .story-wrapper {
        gap: 40px;
    }

    .service-detail-card {
        gap: 30px;
    }

    .service-detail-content {
        padding: 30px;
    }

    .legal-content {
        padding: 30px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .cookie-table {
        font-size: 14px;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 450px;
    }

    .hero-text h2 {
        font-size: 26px;
    }

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

    .service-card {
        min-width: 100%;
    }

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

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

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