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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

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

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

.ad-notice {
    background-color: #e74c3c;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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 {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.btn-accept, .btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

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

.hero-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #34495e;
}

.hero-image-wrapper 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(26, 26, 46, 0.85), rgba(243, 156, 18, 0.75));
    display: flex;
    align-items: center;
}

.hero-overlay h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-overlay p {
    font-size: 22px;
    color: #ecf0f1;
    font-weight: 400;
}

.intro-section {
    padding: 60px 0;
    background-color: #fff;
}

.intro-grid {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 300px;
}

.intro-card h2 {
    font-size: 36px;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.intro-image {
    flex: 1;
    min-width: 300px;
    background-color: #e8eaf6;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-cards {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 42px;
    color: #1a1a2e;
    margin-bottom: 50px;
    font-weight: 700;
}

.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 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

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

.card-image {
    height: 240px;
    overflow: hidden;
    background-color: #bdc3c7;
}

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

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

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

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

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

.btn-select {
    background-color: #f39c12;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #e67e22;
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-intro {
    margin-bottom: 40px;
    text-align: center;
}

.form-intro h2 {
    font-size: 36px;
    color: #1a1a2e;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-intro p {
    font-size: 18px;
    color: #666;
}

.selected-service-display {
    background-color: #d4edda;
    border: 2px solid #28a745;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #155724;
    display: none;
}

.selected-service-display.show {
    display: block;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

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

.btn-submit {
    background-color: #27ae60;
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #229954;
}

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

.why-section h2 {
    text-align: center;
    font-size: 42px;
    color: #1a1a2e;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.benefit-card {
    background-color: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    max-width: 500px;
}

.benefit-card h3 {
    font-size: 24px;
    color: #1a1a2e;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #fff3cd;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-left: 5px solid #f39c12;
    border-radius: 6px;
}

.disclaimer-box h3 {
    font-size: 24px;
    color: #856404;
    margin-bottom: 15px;
    font-weight: 700;
}

.disclaimer-box p {
    font-size: 16px;
    color: #856404;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a1a2e;
    color: #ecf0f1;
    padding: 50px 0 20px;
}

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

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

.footer-column h4 {
    font-size: 20px;
    color: #f39c12;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.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 ease;
}

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

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

.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
}

.page-hero h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-hero p {
    font-size: 20px;
    color: #ecf0f1;
}

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

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    background-color: #fff;
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
    background-color: #e8eaf6;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin: 25px 0 15px;
    font-weight: 700;
}

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

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

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

.price-badge {
    display: inline-block;
    background-color: #f39c12;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-cta {
    display: inline-block;
    background-color: #27ae60;
    color: #fff;
    padding: 14px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.btn-cta:hover {
    background-color: #229954;
}

.cta-banner {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    padding: 80px 0;
    text-align: center;
    margin: 60px 0;
}

.cta-banner h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-banner p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 30px;
}

.btn-large {
    display: inline-block;
    background-color: #1a1a2e;
    color: #fff;
    padding: 18px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.btn-large:hover {
    background-color: #0f3460;
}

.about-story {
    padding: 60px 0;
    background-color: #fff;
}

.story-content {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

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

.story-text h2 {
    font-size: 36px;
    color: #1a1a2e;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.story-image {
    flex: 1;
    min-width: 300px;
    background-color: #e8eaf6;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.values-section h2 {
    text-align: center;
    font-size: 42px;
    color: #1a1a2e;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.value-card {
    background-color: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    max-width: 500px;
    border-top: 4px solid #f39c12;
}

.value-card h3 {
    font-size: 24px;
    color: #1a1a2e;
    margin-bottom: 15px;
    font-weight: 700;
}

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

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

.facilities-section h2 {
    text-align: center;
    font-size: 42px;
    color: #1a1a2e;
    margin-bottom: 50px;
    font-weight: 700;
}

.facilities-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.facility-item {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 280px;
    max-width: 360px;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

.facility-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #bdc3c7;
}

.facility-item h3 {
    font-size: 22px;
    color: #1a1a2e;
    margin: 20px 25px 15px;
    font-weight: 700;
}

.facility-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    padding: 0 25px 25px;
}

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

.team-section h2 {
    text-align: center;
    font-size: 42px;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

.team-member {
    background-color: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(33.333% - 20px);
    min-width: 260px;
    max-width: 350px;
}

.team-member h3 {
    font-size: 22px;
    color: #f39c12;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.stats-section {
    padding: 80px 0;
    background-color: #1a1a2e;
}

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

.stat-item {
    text-align: center;
    flex: 1 1 200px;
    max-width: 250px;
}

.stat-number {
    font-size: 52px;
    color: #f39c12;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #ecf0f1;
    font-weight: 500;
}

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

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

.contact-info-card {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-card h2 {
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 30px;
    font-weight: 700;
}

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

.contact-detail h3 {
    font-size: 20px;
    color: #f39c12;
    margin-bottom: 10px;
    font-weight: 700;
}

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

.contact-map-placeholder {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
    padding: 40px;
    border-radius: 12px;
}

.map-info h3 {
    font-size: 24px;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-weight: 700;
}

.map-info h4 {
    font-size: 18px;
    color: #2c3e50;
    margin: 20px 0 10px;
    font-weight: 700;
}

.map-info p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.map-info ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.map-info ul li {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-additional {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-additional h2 {
    text-align: center;
    font-size: 42px;
    color: #1a1a2e;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.faq-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    max-width: 550px;
}

.faq-item h3 {
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.success-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #fff;
    font-size: 50px;
    line-height: 80px;
    border-radius: 50%;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 38px;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.service-confirmation {
    background-color: #d4edda;
    border: 2px solid #28a745;
    border-radius: 6px;
    padding: 15px;
    margin: 25px 0;
    font-weight: 600;
    color: #155724;
    display: none;
}

.service-confirmation.show {
    display: block;
}

.next-steps {
    font-size: 17px;
    color: #666;
    margin-bottom: 35px;
}

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

.btn-primary {
    display: inline-block;
    background-color: #f39c12;
    color: #fff;
    padding: 14px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #e67e22;
}

.btn-secondary {
    display: inline-block;
    background-color: #27ae60;
    color: #fff;
    padding: 14px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #229954;
}

.legal-content {
    padding: 60px 0;
    background-color: #fff;
}

.legal-content h1 {
    font-size: 42px;
    color: #1a1a2e;
    margin-bottom: 15px;
    font-weight: 700;
}

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

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

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

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

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

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

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .intro-card h2,
    .story-text h2 {
        font-size: 28px;
    }

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

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

    .form-wrapper {
        padding: 30px 20px;
    }

    .main-nav {
        gap: 15px;
    }

    .cards-grid {
        gap: 20px;
    }

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

    .contact-info-card,
    .contact-map-placeholder {
        padding: 25px;
    }
}