* {
    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: #2c3e50;
    background-color: #f8f9fa;
}

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

.header {
    background: #1a2332;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

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

.ad-notice {
    font-size: 11px;
    color: #95a5a6;
    padding: 4px 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

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

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

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

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

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

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

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

.cookie-content a {
    color: #3498db;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

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

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

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-reject:hover {
    background: rgba(255,255,255,0.1);
}

.hero-card {
    margin: 30px 0;
}

.hero-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231,76,60,0.85) 0%, rgba(26,35,50,0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
    padding: 40px;
    max-width: 700px;
}

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

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

.cta-button {
    padding: 15px 40px;
    background: #fff;
    color: #e74c3c;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

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

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

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

.info-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
}

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

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

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

.info-card p {
    color: #7f8c8d;
    font-size: 15px;
}

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

.content-card-horizontal {
    display: flex;
    gap: 50px;
    align-items: center;
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.content-card-horizontal.reverse {
    flex-direction: row-reverse;
}

.card-image {
    flex: 1;
    min-width: 350px;
    background-color: #bdc3c7;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-text {
    flex: 1;
    padding: 50px;
}

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

.card-text p {
    margin-bottom: 20px;
    color: #5a6c7d;
    font-size: 16px;
}

.link-button {
    display: inline-block;
    padding: 12px 30px;
    background: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 15px;
    transition: all 0.3s;
}

.link-button:hover {
    background: #c0392b;
    transform: translateX(5px);
}

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

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

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

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

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

.service-card.featured {
    border: 3px solid #e74c3c;
}

.service-image {
    background-color: #95a5a6;
}

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

.service-content {
    padding: 30px;
}

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

.service-content p {
    color: #7f8c8d;
    margin-bottom: 20px;
    font-size: 15px;
}

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

.price-tag.highlight {
    font-size: 30px;
    color: #c0392b;
}

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

.select-service:hover {
    background: #2980b9;
}

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

.testimonials-section .section-title {
    color: #fff;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: rgba(255,255,255,0.95);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.quote-icon {
    font-size: 48px;
    color: #e74c3c;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
}

.form-section {
    padding: 80px 0;
    background: #ecf0f1;
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.form-card h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group select {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
}

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

.submit-button {
    padding: 15px;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.submit-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

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

.disclaimer-card {
    background: #fff3cd;
    border-left: 4px solid #f39c12;
    padding: 30px;
    border-radius: 8px;
}

.disclaimer-card p {
    color: #856404;
    line-height: 1.7;
}

.footer {
    background: #1a2332;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

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

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

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

.footer-column p {
    color: #95a5a6;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #7f8c8d;
    font-size: 14px;
}

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

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

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

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

.values-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.value-card {
    flex: 1 1 calc(25% - 22.5px);
    min-width: 240px;
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    text-align: center;
}

.value-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

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

.value-card p {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

.team-image {
    background-color: #95a5a6;
}

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

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.team-role {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

.team-info p {
    color: #7f8c8d;
    font-size: 14px;
}

.facilities-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.facility-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 320px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.facility-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    background-color: #95a5a6;
}

.facility-content {
    padding: 25px;
}

.facility-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.facility-content p {
    color: #7f8c8d;
    font-size: 15px;
}

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

.cta-card {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    color: #fff;
}

.cta-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

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

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

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

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

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

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

.service-description {
    font-size: 16px;
    margin-bottom: 25px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.service-benefits li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: #5a6c7d;
    line-height: 1.6;
}

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

.service-pricing {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
}

.service-detail-image {
    flex: 1;
    min-width: 400px;
    background-color: #95a5a6;
}

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

.featured-plan {
    background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
    border: 3px solid #e74c3c;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e74c3c;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.service-detail-content.full-width {
    width: 100%;
}

.complete-benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-item {
    flex: 1 1 calc(50% - 7.5px);
    min-width: 250px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
}

.check-icon {
    color: #27ae60;
    font-size: 20px;
    font-weight: 700;
}

.service-pricing.centered {
    justify-content: center;
}

.price-value.featured {
    font-size: 36px;
    color: #c0392b;
}

.select-service.featured {
    max-width: 400px;
    padding: 16px;
    font-size: 17px;
}

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

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

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

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

.faq-card p {
    color: #7f8c8d;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.contact-info-cards {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-detail-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.info-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

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

.info-detail-card p {
    color: #5a6c7d;
    margin-bottom: 5px;
    font-size: 15px;
}

.contact-form-section {
    flex: 1;
    min-width: 400px;
}

.map-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.map-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.map-card h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2c3e50;
    text-align: center;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: #95a5a6;
}

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

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

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

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 60px 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
}

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

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

.thanks-message {
    font-size: 18px;
    margin-bottom: 15px;
    color: #5a6c7d;
}

.service-confirmation {
    font-size: 16px;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 20px;
}

.thanks-card > p {
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 30px;
}

.next-steps-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: left;
}

.next-steps-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

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

.steps-list li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 15px;
    color: #5a6c7d;
    line-height: 1.6;
}

.steps-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 20px;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

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

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

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.additional-info {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.info-mini-card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    text-align: center;
}

.info-mini-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.info-mini-card p {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.update-date {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 40px;
}

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

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

.legal-section h3 {
    font-size: 20px;
    margin: 20px 0 12px;
    color: #34495e;
}

.legal-section p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.legal-section ul li {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
    }

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

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

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

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

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

    .contact-layout {
        flex-direction: column;
    }

    .form-card {
        padding: 30px;
    }

    .thanks-card {
        padding: 40px 30px;
    }

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

html {
    scroll-behavior: smooth;
}