.hero-section {
    background: var(--post-bg-primary-gradient);
    color: white;
    padding: 80px 0;
}

.section-divider {
    height: 2px;
    background: var(--post-bg-primary-gradient);
    border: none;
    margin: 3rem 0;
}

.treatment-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.treatment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.treatment-card-header {
    background: var(--post-bg-primary-gradient);
    color: white;
    padding: 2rem;
    margin: 0;
    position: relative;
}

.treatment-card-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-left: 5px solid #195ea1;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--post-bg-primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.process-step {
    position: relative;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    border-left: 5px solid #195ea1;
}

.process-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--post-bg-primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.4rem;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.cta-section {
    background: var(--post-bg-primary-gradient);
    color: white;
    padding: 80px 0;
    border-radius: 30px;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}


@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.feature-img {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.faq-card {
    background: #f8f9fa;
    border: none;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 5px solid #195ea1;
    transition: all 0.3s ease;
}

.faq-card:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.warning-card {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: none;
    border-radius: 15px;
    padding: 2rem;
    border-left: 5px solid #f39c12;
}

.important-card {
    background: linear-gradient(135deg, #d1ecf1, #bee5eb);
    border: none;
    border-radius: 15px;
    padding: 2rem;
    border-left: 5px solid #17a2b8;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2380b3 0%, #0c6cbc 100%);
    border-radius: 2px;
}

.highlight-box {
    background: linear-gradient(135deg, #fff5f5, #ffe8e8);
    border: none;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 5px solid #195ea1;
}

.testimonial-card {
    background: white;
    border: none;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    margin: 3rem 0;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 6rem;
    color: #ff6b6b;
    font-family: serif;
    opacity: 0.3;
}
