/* Hero Section */
.hero-section {
    margin: 10px;
    border-radius: 00px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 50px 20px;
    text-align: center;
    color: #ffffff;
}
.hero-section h1 {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 15px;
}
.hero-section p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}
.btn-register-hero {
    display: inline-block;
    background: #ffffff;
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.btn-register-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Features Section */
.features-section {
    padding: 30px 20px 10px;
    background: var(--bg-color);
}
.features-title {
    text-align: center;
    font-size: 17px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.feature-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}
.feature-icon {
    width: 35px;
    font-size: 22px;
    text-align: center;
    flex-shrink: 0;
}
.icon-green { color: #10B981; }
.icon-yellow { color: #F59E0B; }
.icon-blue { color: #3B82F6; }
.icon-purple { color: #8B5CF6; }

.feature-text h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 5px;
}
.feature-text p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Review Section */
.review-section-title {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 20px 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.review-section-title i {
    font-size: 20px;
    color: var(--text-dark);
}
.review-box {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin: 0 15px 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--input-border);
}
.review-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}
.r-avatar {
    width: 45px;
    height: 45px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50%;
    overflow: hidden;
}
.r-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.r-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}
.r-stars {
    color: #FFB800;
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    gap: 2px;
}
.r-text {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
}
