.main-content {
    position: relative;
    z-index: 10;
    margin-top: 4rem;
    margin-bottom: 24px;
}

.top-header {
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.back-btn, .share-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.75rem;
    cursor: pointer;
}

.hero-section {
    position: relative;
    height: 350px;
    border-radius: 24px;
    overflow: hidden;
    margin: 1.5rem 0;
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.3);
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 14, 26, 0.95) 0%, rgba(10, 14, 26, 0.7) 40%, transparent 100%);
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
}

.therapy-badge {
    display: inline-block;
    background: rgba(6, 182, 212, 0.3);
    color: var(--cyan-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid var(--cyan-primary);
    width: 155px;
    text-wrap-mode: nowrap;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1rem;
    color: #9ca3af;
}

.price-card {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(168, 85, 247, 0.15));
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(6, 182, 212, 0.3);
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.2);
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--cyan-primary);
    line-height: 1;
}

.duration-badge {
    background: rgba(6, 182, 212, 0.2);
    color: var(--cyan-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.content-card {
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.05), rgba(168, 85, 247, 0.05));
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cyan-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title i {
    font-size: 1.75rem;
}

.description-text {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1.25rem 0.75rem;
    background: rgba(6, 182, 212, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(6, 182, 212, 0.15);
    transition: all 0.3s;
}

.benefit-item:hover {
    background: rgba(6, 182, 212, 0.12);
    transform: translateY(-5px);
    border-color: var(--cyan-primary);
}

@media (min-width: 768px) {
    .benefit-item {
        flex-direction: row;
        align-items: start;
        text-align: left;
        gap: 1rem;
        padding: 1.25rem;
    }
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(6, 182, 212, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.benefit-icon i {
    color: var(--cyan-primary);
    font-size: 1.5rem;
}

.benefit-text h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: white;
    line-height: 1.2;
}

.benefit-text p {
    font-size: 0.8rem;
    color: #9ca3af;
    margin: 0;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .benefit-text h4 {
        font-size: 1.125rem;
    }

    .benefit-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

.process-timeline {
    position: relative;
    padding-left: 2rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--cyan-primary), rgba(6, 182, 212, 0.3));
}

.process-step {
    position: relative;
    margin-bottom: 2rem;
}

.step-number {
    position: absolute;
    left: -2rem;
    width: 40px;
    height: 40px;
    background: var(--cyan-primary);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.step-content {
    background: rgba(6, 182, 212, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(6, 182, 212, 0.15);
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--cyan-light);
}

.step-description {
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .info-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-mini-card {
    background: rgba(6, 182, 212, 0.08);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
    transition: all 0.3s;
}

.info-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

.info-mini-icon {
    width: 60px;
    height: 60px;
    background: rgba(6, 182, 212, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.info-mini-icon i {
    color: var(--cyan-primary);
    font-size: 1.75rem;
}

.info-mini-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-mini-text {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
}

/* Horizontal scroll for testimonials on mobile */
.testimonials-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
}

.testimonials-container::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(168, 85, 247, 0.08));
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .testimonials-container {
        display: block;
        overflow-x: visible;
    }

    .testimonial-card {
        flex: none;
    }
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--cyan-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    border: 2px solid rgba(6, 182, 212, 0.5);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-stars {
    color: #eab308;
    font-size: 0.875rem;
}

.testimonial-text {
    font-style: italic;
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
}

.list-styled {
    list-style: none;
    padding: 0;
}

.list-styled li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #d1d5db;
    position: relative;
    line-height: 1.6;
}

.list-styled li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cyan-primary);
    font-weight: 700;
    font-size: 1.125rem;
}

.action-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    padding: 1rem;
    z-index: 100;
}

.action-buttons-container {
    /* max-width: 600px; */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.d-md-block{
    display: block !important;
}

.btn-book {
    background: linear-gradient(to right, var(--cyan-primary), #2563eb);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
    transition: all 0.3s;
}

.btn-book:hover {
    background: linear-gradient(to right, #0891b2, #1d4ed8);
    transform: translateY(-2px);
}

.btn-contact {
    background: rgba(6, 182, 212, 0.1);
    color: var(--cyan-primary);
    border: 1px solid var(--cyan-primary);
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-contact:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

@media (min-width: 768px) {

    .hero-section {
        height: 450px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .action-buttons {
        position: static;
        background: transparent;
        border: none;
        padding: 0;
        margin-top: 2rem;
    }

    .action-buttons-container {
        /* max-width: 400px; */
        width: 100%;
        margin: 0;
    }
}
@media(max-width: 768px){
    .main-content {
        margin-top: 3rem;
    }
}
@media(max-width: 414px){
    .btn-book{
        font-size: 13px;
    }
    .btn-contact{
        font-size: 13px;
    }
}