/* Reset and Base Styles */
* {
    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: #fff;
}

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

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

a:hover {
    opacity: 0.8;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

/* Navigation */
.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f8d;
}

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

.nav-links a {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.nav-links a:hover {
    color: #2c5f8d;
}

/* Hero Section */
.hero-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
}

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

.hero-text {
    flex: 1;
}

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

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

.hero-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    background-color: #e8f1f7;
}

.cta-button {
    display: inline-block;
    background-color: #2c5f8d;
    color: #fff;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
}

.cta-button:hover {
    background-color: #1e4563;
    opacity: 1;
}

/* Intro Section */
.intro-section {
    background-color: #f5f9fc;
    padding: 80px 40px;
    margin: 80px 0;
}

.intro-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.intro-card p {
    font-size: 19px;
    color: #555;
    line-height: 1.8;
}

/* Services Preview - Card Based */
.services-preview {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

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

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

.service-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    width: calc(33.333% - 20px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fafbfc;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.price {
    font-size: 26px;
    font-weight: 700;
    color: #2c5f8d;
    margin-bottom: 20px;
    display: block;
}

.select-service {
    background-color: #2c5f8d;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    align-self: flex-start;
}

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

/* Booking Section */
.booking-section {
    max-width: 700px;
    margin: 80px auto;
    padding: 0 40px;
}

.form-container {
    background-color: #f5f9fc;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.selected-service-display {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 35px;
    border-left: 4px solid #2c5f8d;
}

.selected-service-display p {
    margin-bottom: 8px;
    font-size: 16px;
    color: #333;
}

.selected-service-display span {
    font-weight: 700;
    color: #2c5f8d;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

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

.submit-button {
    background-color: #2c5f8d;
    color: #fff;
    padding: 16px 50px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
}

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

/* Testimonials */
.testimonials-section {
    background-color: #f5f9fc;
    padding: 80px 40px;
    margin: 80px 0;
}

.testimonials-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    background-color: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    width: calc(33.333% - 20px);
    min-width: 300px;
}

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

.testimonial-card .author {
    font-size: 15px;
    color: #2c5f8d;
    font-weight: 600;
    font-style: normal;
}

/* Info Section */
.info-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.info-card-large {
    background-color: #fafbfc;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c5f8d 0%, #1e4563 100%);
    color: #fff;
    padding: 80px 40px;
    text-align: center;
}

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

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

/* Services Detailed */
.services-detailed {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
}

.service-detail-card {
    background-color: #fafbfc;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
}

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

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

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

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

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

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f8d;
    margin-bottom: 25px;
}

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

.service-detail-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* About Page */
.about-intro {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
}

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

.about-text {
    flex: 1;
}

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

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

.about-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    background-color: #e8f1f7;
}

/* Values Section */
.values-section {
    background-color: #f5f9fc;
    padding: 80px 40px;
    margin: 80px 0;
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    width: calc(50% - 15px);
    min-width: 320px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c5f8d;
}

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

/* Team Sections */
.team-approach,
.team-philosophy,
.commitment-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.approach-content,
.commitment-content {
    background-color: #fafbfc;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.approach-content h2,
.commitment-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.approach-content p,
.commitment-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.philosophy-card {
    display: flex;
    gap: 50px;
    align-items: center;
    background-color: #fafbfc;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.philosophy-card img {
    flex: 1;
    border-radius: 8px;
    max-width: 400px;
    background-color: #e8f1f7;
}

.philosophy-content {
    flex: 1;
}

.philosophy-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

/* Stats Section */
.stats-section {
    background-color: #f5f9fc;
    padding: 80px 40px;
    margin: 80px 0;
}

.stats-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.stat-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    width: calc(25% - 23px);
    min-width: 220px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #2c5f8d;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

/* Contact Section */
.contact-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
}

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

.contact-info-card {
    flex: 1;
    background-color: #fafbfc;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c5f8d;
}

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

.contact-map-placeholder {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    position: relative;
    background-color: #e8f1f7;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 95, 141, 0.9);
    color: #fff;
    padding: 20px;
    text-align: center;
}

.map-overlay p {
    font-size: 16px;
    margin: 0;
}

/* Additional Info */
.additional-info {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
}

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

.info-card {
    background-color: #fafbfc;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    width: calc(33.333% - 20px);
    min-width: 300px;
}

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

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

.info-card a {
    color: #2c5f8d;
    font-weight: 600;
}

/* Visit Info */
.visit-info {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.visit-info h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.visit-info p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Thanks Page */
.thanks-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

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

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

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

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

.confirmation-details {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
    text-align: left;
}

.confirmation-details h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.confirmation-details p {
    font-size: 17px;
    color: #333;
    margin-bottom: 10px;
}

.confirmation-details span {
    font-weight: 700;
    color: #2c5f8d;
}

.next-steps {
    margin-bottom: 50px;
}

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

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.step-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    width: calc(33.333% - 17px);
    min-width: 250px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2c5f8d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

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

.button-primary,
.button-secondary {
    padding: 16px 35px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
}

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

.button-primary:hover {
    background-color: #1e4563;
    opacity: 1;
}

.button-secondary {
    background-color: #fff;
    color: #2c5f8d;
    border: 2px solid #2c5f8d;
}

.button-secondary:hover {
    background-color: #2c5f8d;
    color: #fff;
}

.additional-info-thanks {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

.info-box {
    background-color: #fff3cd;
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid #ffc107;
}

.info-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.info-box ul {
    padding-left: 25px;
}

.info-box ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

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

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

.last-updated {
    font-size: 15px;
    color: #888;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c5f8d;
}

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

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

.legal-container ul li,
.legal-container ol li {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 40px 20px;
    margin-top: 100px;
}

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

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

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

.footer-section p,
.footer-section a {
    font-size: 15px;
    color: #ccc;
    line-height: 1.8;
}

.footer-section a {
    display: block;
    margin-bottom: 10px;
}

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: #2a2a2a;
    border-radius: 8px;
}

.disclaimer p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.7;
    margin: 0;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 25px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

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

.cookie-btn {
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
}

.cookie-btn.accept {
    background-color: #28a745;
    color: #fff;
}

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

.cookie-btn.reject {
    background-color: #6c757d;
    color: #fff;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .service-card {
        width: calc(50% - 15px);
    }

    .value-card,
    .testimonial-card {
        width: calc(50% - 15px);
    }

    .stat-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .hero-content,
    .about-content,
    .contact-layout,
    .philosophy-card {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 20px;
    }

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

    .service-card,
    .value-card,
    .testimonial-card,
    .info-card,
    .stat-card {
        width: 100%;
    }

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

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

    .button-primary,
    .button-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 15px 20px;
    }

    .hero-section,
    .services-preview,
    .about-intro,
    .contact-section {
        padding: 0 20px;
    }

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

    .form-container,
    .thanks-container,
    .legal-container {
        padding: 30px 25px;
    }
}