:root {
    --primary-color: #4a95c8;
    --secondary-color: #9ad3bc;
    --accent-color: #7cbd9b;
    --light-color: #f5f9fc;
    --dark-color: #2c3e50;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: var(--light-color);
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.nav-link {
    color: var(--primary-color);
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color);
}

.login-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.login-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

.login-card h2 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.login-logo {
    text-align: center;
    margin-bottom: 25px;
}

.login-logo i {
    font-size: 3rem;
    color: var(--primary-color);
}

.btn-login {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s;
}

.btn-login:hover {
    background-color: #3a85a8;
    border-color: #3a85a8;
    transform: translateY(-2px);
}

.btn-google {
    background-color: white;
    border: 1px solid #ddd;
    color: #444;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.btn-google:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-google i {
    margin-right: 10px;
    color: #ea4335;
}

.divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #dee2e6;
}

.divider span {
    padding: 0 10px;
    color: #6c757d;
    font-size: 0.9rem;
}

.login-links {
    text-align: center;
    margin-top: 20px;
}

.login-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.login-links a:hover {
    color: #3a85a8;
    text-decoration: underline;
}

.alert {
    border-radius: 10px;
    margin-bottom: 20px;
}

.password-toggle {
    position: relative;
}

.password-toggle-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
}

.hero-section {
    background-color: #e9f2f8;
    padding: 80px 0;
    margin-bottom: 50px;
}

.hero-img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 600px;
}

.section-title {
    position: relative;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--dark-color);
}

.section-title:after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    margin-top: 10px;
}

.feature-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #3a85a8;
    border-color: #3a85a8;
}

.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

.footer a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: white;
}

.social-icon {
    font-size: 1.2rem;
    margin-right: 15px;
    color: white;
}

.about-hero {
    background-color: #e9f2f8;
    padding: 80px 0 50px;
}
/* Komponen khusus untuk halaman Tentang Kami */
.benefit-item {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.target-group {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s;
}

.target-group:hover {
    transform: translateY(-5px);
}

.target-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.forum-hero {
    background-color: #e9f2f8;
    padding: 80px 0 50px;
}

.section-title {
    position: relative;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--dark-color);
}

.section-title:after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    margin-top: 10px;
}

.category-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.forum-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.forum-stats {
    font-size: 0.9rem;
    color: #6c757d;
}

.tag {
    display: inline-block;
    background-color: #e9f2f8;
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 5px;
    margin-bottom: 5px;
}

.social-icon {
    font-size: 1.2rem;
    margin-right: 15px;
    color: white;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.badge-primary {
    background-color: var(--primary-color);
}

.education-hero {
    background-color: #e9f2f8;
    padding: 80px 0 50px;
}

.education-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.education-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-duration {
    font-size: 0.9rem;
    color: #6c757d;
}

.filter-btn {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 30px;
    padding: 6px 15px;
    margin: 0 5px 10px;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.education-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.projects-hero {
    background-color: #e9f2f8;
    padding: 80px 0 50px;
}

.project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

.card-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-ongoing {
    background-color: var(--accent-color);
    color: white;
}

.status-completed {
    background-color: var(--primary-color);
    color: white;
}

.status-upcoming {
    background-color: #6c757d;
    color: white;
}

.project-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.project-stats {
    font-size: 0.9rem;
    color: #6c757d;
}

.support-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.benefit-list {
    list-style-type: none;
    padding-left: 0;
}

.benefit-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.benefit-list li:before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}
.donation-option {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    transition: all 0.3s;
}

.donation-option:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.donation-option.active {
    border-color: var(--primary-color);
    background-color: rgba(74, 149, 200, 0.05);
}

.donation-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.support-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-title {
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 600;
}

.form-control,
.form-select {
    border-radius: 10px;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(74, 149, 200, 0.25);
}

.benefit-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    padding: 25px;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.step-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.membership-card {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.membership-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.membership-card.featured {
    border-width: 3px;
    border-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.membership-card.featured::before {
    content: "PALING POPULER";
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--primary-color);
    color: white;
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
}

.period {
    font-size: 1rem;
    color: #6c757d;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.feature-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.breadcrumb {
    background-color: transparent;
    padding: 15px 0;
}

.article-hero {
    background-color: #e9f2f8;
    padding: 40px 0;
    margin-bottom: 30px;
}

.article-meta {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 10px;
    color: #6c757d;
    font-size: 0.9rem;
}

.meta-item i {
    margin-right: 5px;
    color: var(--primary-color);
}

.article-tag {
    display: inline-block;
    background-color: rgba(74, 149, 200, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 8px;
    margin-bottom: 8px;
}

.article-content {
    font-size: 1.1rem;
}

.article-content h2 {
    color: var(--dark-color);
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.article-content h3 {
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.article-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin: 25px 0;
    font-style: italic;
    color: #555;
}

.article-content img {
    border-radius: 10px;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thumbnail-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thumbnail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.thumbnail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px;
    color: white;
}

.exercise-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--accent-color);
}

.exercise-number {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin-right: 10px;
    font-weight: bold;
}

.tips-list {
    list-style-type: none;
    padding-left: 0;
}

.tips-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.tips-list li:before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.related-article {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.related-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-img {
    height: 180px;
    object-fit: cover;
}

.author-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.related-section {
    background-color: #f8f9fa;
    padding: 40px 0;
    margin-top: 40px;
}

.profile-container {
    padding: 40px 0;
}

.profile-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.profile-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--secondary-color);
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    margin-bottom: 20px;
}

.profile-title {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.profile-email {
    color: #6c757d;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .author-card {
        flex-direction: column;
        text-align: center;
    }

    .author-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .thumbnail-image {
        height: 250px;
    }

    .steps-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .steps-container:before {
        display: none;
    }

    .step {
        flex-direction: row;
        margin-bottom: 15px;
    }

    .step-number {
        margin-right: 15px;
        margin-bottom: 0;
    }

    .pain-scale {
        justify-content: center;
    }

    .pain-level {
        margin: 0 5px 15px;
    }

    .evaluation-grid {
        grid-template-columns: 1fr;
    }
}

.forum-detail-container {
    padding: 30px 0;
}

.discussion-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.discussion-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.user-info {
    margin-left: 15px;
}

.user-name {
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--dark-color);
}

.discussion-date {
    font-size: 0.85rem;
    color: #6c757d;
}

.discussion-tags {
    margin: 15px 0;
}

.tag {
    display: inline-block;
    background-color: rgba(74, 149, 200, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 8px;
    margin-bottom: 8px;
}

.discussion-stats {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #6c757d;
}

.stat-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.stat-item i {
    margin-right: 5px;
}
.btn-like,
.btn-comment,
.btn-share {
    background: none;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 0.9rem;
    color: #6c757d;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.btn-like:hover,
.btn-comment:hover,
.btn-share:hover {
    background-color: #f8f9fa;
}

.btn-like i,
.btn-comment i,
.btn-share i {
    margin-right: 5px;
}

.btn-like.active {
    background-color: rgba(255, 87, 87, 0.1);
    border-color: rgba(255, 87, 87, 0.2);
    color: #ff5757;
}

.btn-suka {
    background-color: rgb(72, 72, 182);
    color: white;
}
.comments-section {
    margin-top: 30px;
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.comment-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
    border-left: 3px solid var(--secondary-color);
}

.comment-meta {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.comment-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-user-info {
    margin-left: 12px;
}

.comment-user-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.comment-date {
    font-size: 0.8rem;
    color: #6c757d;
}

.comment-actions {
    display: flex;
    margin-top: 15px;
}

.comment-action-btn {
    background: none;
    border: none;
    color: #6c757d;
    font-size: 0.85rem;
    margin-right: 15px;
    cursor: pointer;
    transition: color 0.3s;
}

.comment-action-btn:hover {
    color: var(--primary-color);
}

.comment-action-btn i {
    margin-right: 5px;
}

.add-comment-form {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.related-discussions {
    margin-top: 50px;
}

.related-header {
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.related-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.related-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.related-meta {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #6c757d;
}

.related-meta span {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.related-meta i {
    margin-right: 5px;
}

.faq-container {
    padding: 40px 0;
}

.search-box {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.search-input {
    position: relative;
}

.search-input .form-control {
    border-radius: 30px;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    font-size: 1.1rem;
}

.search-input .btn {
    position: absolute;
    right: 5px;
    top: 5px;
    border-radius: 30px;
    padding: 10px 20px;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.category-btn {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s;
}

.category-btn:hover,
.category-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.accordion-item {
    border: none;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-button {
    background: white;
    border: none;
    border-radius: 10px;
    padding: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-color);
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

.accordion-body {
    padding: 20px;
    background-color: #f8f9fa;
}

.contact-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.faq-category {
    margin-bottom: 40px;
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.category-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-right: 15px;
}
.payment-hero {
    background-color: #e9f2f8;
    padding: 60px 0 40px;
}
.payment-container {
    padding: 40px 0;
}

.payment-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bank-card {
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin-bottom: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.bank-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.bank-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.bank-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.account-details {
    margin-left: 65px;
}

.account-info {
    display: flex;
    margin-bottom: 8px;
}

.account-label {
    font-weight: 600;
    min-width: 120px;
    color: var(--dark-color);
}

.account-value {
    color: #495057;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    margin-left: 10px;
    font-size: 0.9rem;
}

.copy-btn:hover {
    color: #3a85a8;
}

.instructions-list {
    list-style-type: none;
    padding-left: 0;
}

.instructions-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.instructions-list li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.upload-area {
    border: 2px dashed #dee2e6;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s;
    background-color: #f8f9fa;
}

.upload-area:hover {
    border-color: var(--primary-color);
    background-color: #e9f2f8;
}

.upload-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.file-input {
    display: none;
}

.file-preview {
    margin-top: 20px;
    text-align: center;
}

.file-preview img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.file-info {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #6c757d;
}
.payment-status {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.status-pending {
    background-color: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

.status-approved {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.status-rejected {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.status-icon {
    font-size: 1.5rem;
    margin-right: 15px;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.steps-container:before {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #dee2e6;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 10px;
    color: #6c757d;
}

.step.active .step-number {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.step.completed .step-number {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.step-text {
    font-size: 0.9rem;
    text-align: center;
    color: #6c757d;
}

.step.active .step-text {
    color: var(--dark-color);
    font-weight: 600;
}

.self-check-container {
    padding: 40px 0;
}

.check-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pain-scale {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    flex-wrap: wrap;
}

.pain-level {
    text-align: center;
    width: 60px;
    cursor: pointer;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.pain-level:hover {
    transform: scale(1.1);
}

.pain-level.active {
    transform: scale(1.5);
}

.pain-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 10px;
    border: 2px solid #dee2e6;
    transition: all 0.3s;
}

.pain-level.active .pain-number {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: white;
}

.pain-label {
    font-size: 0.8rem;
    color: #6c757d;
}

.pain-level.active .pain-label {
    color: var(--dark-color);
    font-weight: 600;
}

.evaluation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.evaluation-btn {
    background: white;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.evaluation-btn:hover {
    border-color: var(--primary-color);
    background-color: #f8f9fa;
}

.evaluation-btn.active {
    border-color: var(--primary-color);
    background-color: rgba(74, 149, 200, 0.1);
    font-weight: 600;
}
.result-container {
    display: none;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--secondary-color);
}

.recommendation-list {
    list-style-type: none;
    padding-left: 0;
}

.recommendation-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.recommendation-list li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}
