* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* HEADER */
.about-header {
    background: #e0e0e0;
    text-align: center;
    padding: 100px 20px;
}

/* Judul = hero-title */
.about-header h1 {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 20px;
}

/* Subjudul = hero-subtitle */
.about-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
    color: #333;
}

/* Navbar */
.navbar-custom {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 40px !important;
    border: 1px solid #ddd !important;
    border-radius: 50px !important;
    margin: 20px auto !important;
    width: 90% !important;
    background-color: white !important;
    height: 72px !important;
}

/* Logo */
.brand-img {
    height: 45px !important;
    width: auto !important;
}

/* Nav Links */
.nav-links {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 30px !important;
    list-style: none !important;
    height: 100% !important;
    transform: translateY(2px) !important;
    padding-left: 0 !important;
    margin: 0 !important;
}

.nav-links li a {
    text-decoration: none !important;
    color: #333 !important;
    font-size: 17px !important;
    font-weight: 700 !important; /* ganti 600 jadi 700 */
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    transition: 0.3s ease !important;
}


.nav-links li a:hover {
    color: #8b0000 !important;
    transform: translateY(-2px) !important;
}

/* Nav Auth */
.nav-auth {
    display: flex !important;
    align-items: center !important;
}

.btn-nav {
    border-radius: 20px !important;
    border: 1px solid #333 !important;
    background: #fff !important;
    padding: 6px 16px !important;
    margin-left: 8px !important;
    cursor: pointer !important;
    text-decoration: none !important;
    color: #333 !important;
    display: inline-flex !important;
    align-items: center !important;
    transition: 0.3s !important;
}

.btn-nav:hover {
    background: #333 !important;
    color: #fff !important;
}

.about-header {
    background-image: url("CoursesBG.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    text-align: center;
    padding: 120px 20px;
    position: relative;
}

/* TESTIMONIAL STYLES */
.testimonial-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #2d2f31;
}

.testimonial-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 260px;
    border: 1px solid #d1d7dc;
    padding: 25px;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    font-size: 45px;
    font-family: serif;
    color: #2d2f31;
    line-height: 0.8;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: #2d2f31;
    margin-bottom: 25px;
    flex-grow: 1; /* Menjaga footer tetap di bawah */
}

.card-footer {
    display: flex;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-photo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    font-weight: bold;
    font-size: 14px;
    margin: 0;
}

.user-job {
    font-size: 12px;
    color: #6a6f73;
    margin: 2px 0 0 0;
}

.responses {
    font-size: 13px;
    color: #6a6f73;
}

/* Responsif */
@media (max-width: 992px) {
    .testimonial-card { flex: 0 0 calc(50% - 20px); }
}

@media (max-width: 600px) {
    .testimonial-card { flex: 0 0 100%; }
}

/* COURSES SECTION STYLES */
.courses-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.course-card {
    border: 1px solid #d1d7dc;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.course-image img {
    width: 100%;
    height: auto;
    display: block;
}

.course-content {
    padding: 15px;
}

.course-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 8px 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Batasi teks judul 2 baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-instructor {
    font-size: 12px;
    color: #6a6f73;
    margin-bottom: 8px;
}

.course-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.badge-bestseller {
    background-color: #eceb98;
    color: #3d3c0a;
    font-size: 11px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 2px;
}

.rating-number {
    font-weight: bold;
    color: #b4690e;
    font-size: 14px;
}

.star {
    color: #b4690e;
    font-size: 12px;
}

.rating-count {
    font-size: 12px;
    color: #6a6f73;
}

.course-price {
    font-size: 16px;
    font-weight: bold;
}

/* Penyesuaian Responsif Mobile */
@media (max-width: 600px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }
}

/* PRICING SECTION STYLES */
.pricing-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.pricing-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.pricing-header p {
    color: #6a6f73;
    margin-bottom: 40px;
}

.pricing-container {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.pricing-card {
    flex: 1;
    border: 1px solid #d1d7dc;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.card-top {
    padding: 25px;
    border-bottom: 1px solid #d1d7dc;
    background-color: #f7f9fa;
}

/* Border warna di bagian atas kartu */
.purple-border { border-top: 5px solid #a435f0; }
.blue-border { border-top: 5px solid #2e83e6; }
.dark-header { border-top: 5px solid #1c1d1f; }

.pricing-card h3 {
    font-size: 20px;
    margin: 0 0 10px 0;
}

.subtitle {
    font-size: 13px;
    color: #6a6f73;
    margin-bottom: 20px;
}

.btn-outline {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid #1c1d1f;
    font-weight: bold;
    cursor: pointer;
}

.btn-outline:hover {
    background: #f7f9fa;
}

.card-bottom {
    padding: 25px;
}

.price {
    font-size: 16px;
    margin-bottom: 5px;
}

.billing {
    font-size: 12px;
    color: #6a6f73;
    margin-bottom: 20px;
}

/* List Fitur dengan Icon Ceklis */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    font-size: 14px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1e8331;
    font-weight: bold;
}

.ai-sub-section {
    margin-bottom: 25px;
}

.ai-title {
    font-size: 15px;
    margin-bottom: 4px;
}

.ai-desc {
    font-size: 13px;
    color: #2d2f31;
    line-height: 1.4;
}

/* Responsif untuk Tablet dan HP */
@media (max-width: 900px) {
    .pricing-container {
        flex-direction: column;
    }
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding: 60px 10%;
    border-top: 1px solid #eee;
    background: #fff;
}

.footer-brand {
    width: 35%;
}

.footer-brand p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.link-column h5 {
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: bold;
}

.link-column a {
    display: block;
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 8px;
    transition: 0.2s;
}

.link-column a:hover {
    text-decoration: underline;
    color: #000;
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer {
        flex-direction: column;
        gap: 40px;
    }

    .footer-brand {
        width: 100%;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }
}