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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Hero Header Section */
.hero-header {
    background: linear-gradient(135deg, #FF7B7B 0%, #FF6B6B 100%);
    padding: 30px 20px;
    text-align: center;
    color: white;
}

.logo-container {
    margin-bottom: 20px;
}

.site-logo {
    max-width: 150px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.main-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.subtitle {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.consultation {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

/* Price Block */
.price-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.old-price {
    font-size: 28px;
    text-decoration: line-through;
    opacity: 0.8;
    font-weight: 400;
}

.new-price {
    font-size: 48px;
    font-weight: 900;
}

.discount-badge {
    background-color: #E63946;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.places-left {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
}

/* CTA Button */
.cta-button {
    background-color: #FF8585;
    color: white;
    border: none;
    padding: 16px 50px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

/* Image Section & Carousel */
.image-section {
    background-color: #E8E8E8;
    padding: 60px 20px;
}

.image-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.carousel-image {
    width: 100%;
    height: auto;
    display: none;
}

.carousel-image.active {
    display: block;
}

.image-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 16px 20px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
    border-radius: 4px;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Carousel Dots */
.carousel-dots {
    text-align: center;
    padding: 20px 0 0 0;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: #FF6B6B;
}

/* Why Section */
.why-section {
    background-color: #E8E8E8;
    padding: 60px 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.3;
    text-transform: uppercase;
}

.why-content {
    max-width: 1000px;
    margin: 0 auto;
}

.section-text {
    font-size: 18px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 25px auto;
    line-height: 1.8;
}

.why-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.benefit-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 25px rgba(255, 107, 107, 0.15);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF7B7B 0%, #FF6B6B 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.benefit-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Spine Section */
.spine-section {
    background-color: #F9F9F9;
    padding: 60px 20px;
}

.spine-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

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

.spine-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.spine-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: #FF6B6B;
    margin-bottom: 20px;
    text-transform: uppercase;
}

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

/* Diseases Section */
.diseases-section {
    background-color: #FFFFFF;
    padding: 80px 20px;
}

.diseases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 40px;
}

.disease-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #f0f0f0;
}

.disease-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.2);
    border-color: #FF6B6B;
}

.disease-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #f8f8f8;
}

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

.disease-card:hover .disease-image img {
    transform: scale(1.05);
}

.disease-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #FF6B6B;
    margin: 20px 20px 12px 20px;
    line-height: 1.3;
}

.disease-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0 20px 20px 20px;
}

/* Program Section */
.program-section {
    background-color: #F5F5F5;
    padding-bottom: 60px;
}

.program-header {
    background-color: #C8C8C8;
    padding: 15px 20px;
    text-align: center;
}

.program-tag {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    letter-spacing: 1px;
    font-style: italic;
}

.form-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 15px;
}

.form-subtitle {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.age-requirement {
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

/* Places Bar */
.places-bar {
    background: linear-gradient(135deg, #FF7B7B 0%, #FF6B6B 100%);
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 40px;
    border-radius: 8px;
}

/* Registration Form */
.registration-form {
    max-width: 500px;
    margin: 0 auto;
}

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

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

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #FF6B6B;
}

.submit-button {
    width: 100%;
    background-color: #FF6B6B;
    color: white;
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.submit-button:hover {
    background-color: #E63946;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.form-notice {
    font-size: 12px;
    text-align: center;
    color: #777;
    line-height: 1.5;
}

.form-notice a {
    color: #FF6B6B;
    text-decoration: none;
}

.form-notice a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #2C2C2C;
    color: #B8B8B8;
    padding: 40px 20px;
}

.footer-contacts {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #444;
}

.footer-contacts h4 {
    color: #FF6B6B;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-item {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.8;
}

.contact-item strong {
    color: #FFF;
    margin-right: 10px;
}

.contact-item a {
    color: #FF6B6B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #FF8585;
    text-decoration: underline;
}

.footer-legal-info {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #444;
}

.footer-legal-info h4 {
    color: #FF6B6B;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-legal-info p {
    font-size: 14px;
    line-height: 1.8;
    color: #B8B8B8;
    margin-bottom: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-info {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-desc {
    font-size: 12px;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-logo {
        max-width: 120px;
    }
    
    .main-title {
        font-size: 24px;
    }
    
    .subtitle {
        font-size: 28px;
    }
    
    .consultation {
        font-size: 16px;
    }
    
    .old-price {
        font-size: 22px;
    }
    
    .new-price {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-text {
        font-size: 16px;
    }
    
    .why-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .benefit-item {
        padding: 20px;
    }
    
    .benefit-text h4 {
        font-size: 16px;
    }
    
    .benefit-text p {
        font-size: 14px;
    }
    
    .form-title {
        font-size: 26px;
    }
    
    .form-subtitle {
        font-size: 18px;
    }
    
    .spine-content {
        flex-direction: column;
    }
    
    .spine-text h3 {
        font-size: 24px;
    }
    
    .spine-text p {
        font-size: 16px;
    }
    
    .diseases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .disease-card h3 {
        font-size: 18px;
    }
    
    .disease-card p {
        font-size: 14px;
    }
    
    .disease-image {
        height: 200px;
    }
    
    .carousel-btn {
        padding: 12px 16px;
        font-size: 18px;
    }
    
    .prev-btn {
        left: 5px;
    }
    
    .next-btn {
        right: 5px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

