.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;
}

.laser-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.laser-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.laser-card-header {
    background: var(--post-bg-primary-gradient);
    padding: 1.5rem;
    margin: 0;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--post-bg-primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.process-step {
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.process-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    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.2rem;
}

.cta-section {
    background: var(--post-bg-primary-gradient);
    color: white;
    padding: 60px 0;
    border-radius: 25px;
    margin: 3rem 0;
}

.feature-img {
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.testimonial-card {
    background: #f8f9fa;
    border-left: 5px solid #667eea;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--post-bg-primary-gradient);
    border-radius: 2px;
}