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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

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

.ad-notice {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 30px;
    z-index: 999;
}

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

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

.nav {
    display: flex;
    gap: 30px;
}

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

.nav a:hover {
    color: #3498db;
}

.hero-section {
    margin-bottom: 60px;
}

.hero-image-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.85), rgba(46, 204, 113, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

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

.hero-text p {
    font-size: 20px;
    line-height: 1.6;
}

.intro-section {
    padding: 60px 0;
}

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

.intro-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.intro-card p {
    color: #666;
    font-size: 16px;
}

.services-preview {
    padding: 60px 0;
    background: #fff;
}

.services-preview h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    flex: 1;
    min-width: 320px;
    max-width: 48%;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

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

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    flex: 1;
}

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

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: #3498db;
    color: #fff;
}

.btn-primary:hover {
    background: #2980b9;
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background: #3498db;
    color: #fff;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-card {
    text-align: center;
    color: #fff;
}

.cta-card h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: #fff;
    color: #667eea;
}

.cta-section .btn-primary:hover {
    background: #f0f0f0;
}

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

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

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

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

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

.trust-image {
    flex: 1;
    min-width: 300px;
    border-radius: 16px;
    overflow: hidden;
    background: #e0e0e0;
}

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

.booking-section {
    padding: 80px 0;
    background: #fff;
}

.booking-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.booking-form {
    max-width: 700px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    margin-bottom: 25px;
    flex: 1;
    min-width: 250px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.booking-form button[type="submit"] {
    width: 100%;
    margin-top: 10px;
}

.footer {
    background: #2c3e50;
    color: #fff;
    padding: 60px 0 20px;
}

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

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

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

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

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

.disclaimer {
    background: #ecf0f1;
    padding: 30px;
    text-align: center;
    font-size: 14px;
    color: #555;
    border-top: 3px solid #3498db;
}

.disclaimer p {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 25px;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 15px;
}

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

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

.btn-accept {
    background: #27ae60;
    color: #fff;
}

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: #95a5a6;
    color: #fff;
}

.btn-reject:hover {
    background: #7f8c8d;
}

.page-hero {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 60px;
}

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

.page-hero p {
    font-size: 19px;
    max-width: 700px;
    margin: 0 auto;
}

.services-detail {
    padding: 60px 0;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 350px;
    background: #e0e0e0;
}

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

.service-detail-content {
    flex: 1;
    min-width: 350px;
    padding: 40px;
}

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

.service-description {
    font-size: 17px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #555;
    font-size: 16px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.service-pricing {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.price-label {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 16px;
}

.service-pricing p {
    margin: 8px 0;
    color: #555;
    font-size: 16px;
}

.service-pricing strong {
    color: #27ae60;
    font-size: 18px;
}

.about-story {
    padding: 60px 0;
}

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

.story-image {
    flex: 1;
    min-width: 350px;
    border-radius: 16px;
    overflow: hidden;
    background: #e0e0e0;
}

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

.story-content {
    flex: 1;
    min-width: 350px;
}

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

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

.about-values {
    padding: 80px 0;
    background: #fff;
}

.about-values h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.value-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 35px;
    flex: 1;
    min-width: 260px;
    max-width: 48%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

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

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

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

.about-team h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-intro {
    text-align: center;
    font-size: 17px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
}

.team-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.stat-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    min-width: 220px;
    flex: 1;
    max-width: 250px;
    color: #fff;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

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

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

.about-approach {
    padding: 80px 0;
    background: #fff;
}

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

.approach-content {
    flex: 1;
    min-width: 350px;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.approach-image {
    flex: 1;
    min-width: 350px;
    border-radius: 16px;
    overflow: hidden;
    background: #e0e0e0;
}

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

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

.about-facility h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.facility-intro {
    text-align: center;
    font-size: 17px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
}

.facility-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.facility-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 35px;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

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

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

.contact-main {
    padding: 60px 0;
}

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

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

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

.contact-block {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.contact-note {
    font-size: 14px;
    color: #3498db;
    margin-top: 10px;
}

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

.map-placeholder {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    background: #e0e0e0;
}

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

.contact-hours-detail {
    padding: 80px 0;
    background: #fff;
}

.contact-hours-detail h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.hours-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    flex: 1;
    min-width: 260px;
    max-width: 48%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

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

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

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

.visit-content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
}

.visit-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.contact-faq {
    padding: 80px 0;
    background: #fff;
}

.contact-faq h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    flex: 1;
    min-width: 260px;
    max-width: 48%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

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

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

.thanks-section {
    padding: 80px 0;
    min-height: 60vh;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

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

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

.thanks-service-info {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    font-size: 17px;
    color: #27ae60;
}

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

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.step-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    flex: 1;
    min-width: 220px;
    max-width: 250px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

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

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

.thanks-contact strong {
    color: #2c3e50;
}

.legal-page {
    padding: 60px 0;
    min-height: 70vh;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.legal-updated {
    font-size: 15px;
    color: #95a5a6;
    margin-bottom: 40px;
}

.legal-content {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

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

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

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

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

.cookie-table thead tr {
    background: #f8f9fa;
}

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

.cookie-table th {
    font-weight: 600;
    color: #2c3e50;
}

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

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 15px;
    }

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

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

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

    .trust-content,
    .story-layout,
    .approach-layout,
    .contact-layout {
        flex-direction: column;
    }

    .value-card,
    .hours-card,
    .faq-item {
        max-width: 100%;
    }

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

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

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