* {
    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("CommunityBG.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    text-align: center;
    padding: 120px 20px;
    position: relative;
}

.img-box {
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.community-section {
  background: #f8fafc;
}

.stat-card {
  background: #ffffff;
  padding: 30px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.stat-card h5 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-card p {
  color: #6b7280;
  margin: 0;
}

.community-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}

.community-card:hover {
  transform: translateY(-4px);
}

.community-card h5 {
  font-weight: 600;
}

.reply-box {
  background: #f1f5f9;
  padding: 15px;
  border-radius: 12px;
}

.reply-box p {
  margin-bottom: 8px;
  font-size: 14px;
}

.community-feedback-section {
  background: #f8fafc;
}

.feedback-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feedback-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.feedback-card p {
  font-size: 15px;
  color: #374151;
  margin-bottom: 16px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

/* 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;
    }
}
