* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #f0f4f8;
  color: #333;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #002A45; /* Dark blue */
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.logo {
    display: flex;
    align-items: center; 
    font-size: 18px;
    font-weight: bold;
    color: white;
    gap: 10px; 
}

.logo img {
    height: 45px; 
    border-radius: 50%;
}

.brand-name {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    color: white;
    white-space: nowrap; 
}


nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 15px;
    transition: 0.3s ease;
    border-radius: 5px;
}

nav a:hover {
    background: #e67e22;
    color: #fff;
}

nav .button {
    background: #f79f36;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    transition: 0.3s;
}

nav .button:hover {
    background: #e67e22;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1100;
}

.menu-toggle div {
    width: 28px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
}

.container {
    max-width: 1200px;
    margin: 80px auto 20px;
    padding: 20px;
}

.section {
    padding: 50px 20px;
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

@media (max-width: 1024px) {
    header {
        padding: 10px 20px;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: #002A45;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out;
        box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    nav ul li {
        padding: 15px 0;
        width: 100%;
    }

    nav ul li a {
        display: block;
        font-size: 18px;
        padding: 10px;
    }

    nav .button {
        width: 80%;
        text-align: center;
        margin-top: 10px;
    }

    nav.active {    
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active div:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active div:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active div:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        right: 20px;
        top: 15px;    
        transform: none; 
    }

    header {
        padding: 10px 5px;
    }
}


.hero {
    position: relative;
    background: url('../img/homepage.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 0 5%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.4); 
    z-index: 1; 
}

.hero > * {
    position: relative;
    z-index: 2; 
}


.hero-content {
    max-width: 600px;
    color: #0c2340;
}

.logo {
    width: 120px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 2.3rem;
    font-weight: bold;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #555;
    margin: 10px 0 20px;
}

.hero-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #f79f36;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    transition: 0.3s;
}

.hero-button:hover {
    background-color: #d69b4a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        text-align: center;
        justify-content: center;
        padding: 20px;
    }

    .hero-content {
        max-width: 90%;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-button {
        font-size: 0.8rem;
        padding: 8px 18px;
    }
}


.about {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5%;
    background: url('img/background.jpg') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    padding: 20px;
    color: #002A45;
    align-items: flex-start;
}

.about-container > .title {
    font-size: 38px;
    margin: 0 0 10px 0;
    color: #002A45;
    text-align: left;
    width: 100%;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    align-items: center;
}

.image {
    flex-shrink: 0;
    width: 100%;
    max-width: 50%;
    margin-bottom: 20px;
}

.image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    color: #002A45;
    padding-left: 30px; 
}

.content p {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.button {
    display: inline-block;
    background: #f79f36;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    max-width: 280px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.button:hover {
    background: #e68a1f;
    border: none;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    text-align: left;
    font-size: 18px;
    line-height: 1.6;
}

.modal-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.modal-content p {
    margin-bottom: 20px;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .about-container {
        align-items: center;
    }

    .content-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .image {
        max-width: 80%;
        margin: 0 auto 20px auto;
    }

    .content {
        text-align: center;
        max-width: 90%;
        padding-left: 0; 
    }

    .about-container > .title {
        text-align: center;
    }

    .content p {
        font-size: 16px;
    }

    .modal-content {
        width: 90%;
        max-width: 500px;
    }

        
    .button {
        margin: 0 auto;
        display: block;
    }
}

.modal-content {
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  border: none;
  animation: fadeInModal 0.3s ease-in-out;
}

@keyframes fadeInModal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-header {
  background-color: #002A45;
  color: white;
  border-bottom: none;
  padding: 20px 24px;
}

.modal-title {
  font-weight: 700;
  font-size: 20px;
  margin: 0;
}

.form-control {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #ced4da;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: #002A45;
  box-shadow: 0 0 0 0.15rem rgba(0, 42, 69, 0.2);
}

.btn-login {
  background-color: #002A45;
  color: white;
  border: none;
  font-weight: 600;
  padding: 12px;
  font-size: 16px;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.btn-login:hover {
  background-color: #001a2e;
  color: #ffffff;
}

@media (max-width: 576px) {
  .modal-content {
    margin: 10px;
  }

  .modal-title {
    font-size: 18px;
  }

  .btn-login {
    font-size: 15px;
    padding: 10px;
  }

  .form-control {
    font-size: 15px;
    padding: 10px 14px;
  }
}


.helpers {
  padding: 30px 15px; 
  text-align: center;
  background-color: #ffffff;
}

.helpers h2 {
  font-size: 36px;
  font-family: 'Georgia', serif;
  margin-bottom: 20px;
  color: #002A45;
}

.cards {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;

}

.card.new-style {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  padding: 20px;
  position: relative;
  text-align: left;
  max-width: 320px; 
  margin: 0; 
}


.top-logo {
  margin-bottom: 8px;
}

.logo-img {
  width: 35px;
  height: 35px;
  object-fit: cover;
  border-radius: 100%;
  display: block;
  margin: 0 auto;
}

.profile-pic {
  margin-bottom: 15px;
}

.profile-img {
  width: 140px;
  height: 170px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 auto;
  display: block;
}

.name-banner {
  background-color: #e67e22;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 14px; 
  padding: 8px 16px;
  border-radius: 50px;
  display: inline-block;
  margin: -20px 0 10px 0; 
}

.sipp {
  font-size: 15px;  
  font-weight: bold;
  text-align: center;
  color: #002A45;
  margin-bottom: 8px;
}

.title {
  font-family: 'Brush Script MT', cursive;
  font-size: 22px; 
  text-align: center;
  color:#002A45;
  margin-bottom: 12px;
}

.keterangan {
  font-size: 13px;
  text-align: center;
  color: #333;
  margin-bottom: 12px;
  padding: 0 8px;
}

.detail-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 18px;
}

.detail-list li {
  position: relative;
  padding-left: 22px; 
  margin-bottom: 8px;
  font-size: 13px; 
  line-height: 25px;
}

.detail-list li::before {
  content: '•';
  font-weight: bold;
  font-size: 25px;
  position: absolute;
  left: 0;
  top: 0; 
  color: #002A45;
  line-height: 25px; 
}


@media (max-width: 480px) {
  .profile-img {
    width: 100px; 
    height: 120px;
  }
  .name-banner {
    font-size: 12px;
    padding: 6px 12px;
  }
  .title {
    font-size: 18px;
  }
.cards {
    justify-content: center;
  }

  .card.new-style {
    flex: 1 1 90%;
    max-width: 90%;
  }
}


.event-section {
  background:#f5f5f5; 
  padding: 60px 40px;
  margin: 0;
}

.event-title {
  font-size: 36px;
  font-weight: 700;
  color: #002A45;
  text-align: center;
  margin-bottom: 40px;
}

.event-carousel-container {
  position: relative;
  overflow: hidden;
  margin: 30px auto;
  padding: 0 200px;
  max-width: 100%;
  box-sizing: border-box;
}

.event-grid {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  scroll-padding: 0;
  justify-content: flex-start;
}

.event-grid::-webkit-scrollbar {
  display: none;
}

.event-card {
  flex: 0 0 auto;
  width: 380px;
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-snap-align: center;
  text-align: center;
}

.event-card img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.events h2 {
  font-size: 36px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #002A45;
  text-align: center;
}

.arrow {
  background-color: rgba(0, 42, 69, 0.8);
  color: white;
  border: none;
  font-size: 32px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.arrow:hover {
  background-color: #f79f36;
}

.arrow.left {
  left: 15px;
}

.arrow.right {
  right: 15px;
}

@media (min-width: 1024px) {
  .event-card {
    width: calc((100% - 60px) / 3);
    max-width: 380px;
  }
}

@media (max-width: 768px) {
  .event-carousel-container {
    padding: 0 20px;
  }

  .event-grid {
    gap: 15px;
    padding: 15px 0;
  }

  .event-card {
    width: 85%;
    max-width: 350px;
  }

  .arrow {
    font-size: 24px;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .event-carousel-container {
    padding: 0 15px;
  }

  .event-grid {
    padding: 10px 0;
  }

  .event-card {
    width: 90%;
    max-width: 320px;
    margin: 0 auto;
  }

  .arrow {
    font-size: 20px;
    padding: 6px 10px;
  }
}

.dokumentasi-section {
  background-color: #ffffff;
}

.dokumentasi-section .judul {
  font-size: 36px;
  font-weight: 700;
  color: #003366;
  margin-bottom: 10px;
  text-align: left;
}

.dokumentasi-section .subjudul {
  font-size: 18px;
  color: #333;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: left;
}

.dokumentasi-section .subjudul span {
  font-style: italic;
}

.dokumentasi-section .subjudul .highlight {
  color: #f5a623;
  font-weight: 600;
}

.scroll-gallery {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.scroll-gallery img {
  width: 230px;
  height: 330px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.scroll-gallery img:hover {
  transform: scale(1.05);
}

/* Scrollbar style */
.scroll-gallery::-webkit-scrollbar {
  height: 6px;
}

.scroll-gallery::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 4px;
}

.scroll-gallery::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

/* Responsiveness */
@media (max-width: 768px) {
  .dokumentasi-section .judul {
    font-size: 28px;
  }

  .dokumentasi-section .subjudul {
    font-size: 16px;
  }

  .scroll-gallery img {
    width: 200px;
    height: 280px;
  }
}

@media (max-width: 480px) {
  .dokumentasi-section {
    padding: 40px 10px;
  }

  .dokumentasi-section .judul {
    font-size: 24px;
  }

  .dokumentasi-section .subjudul {
    font-size: 14px;
  }

  .scroll-gallery img {
    width: 170px;
    height: 230px;
  }
}


.layanan-section {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    background-color: #f5f5f5; 
}

.layanan-container {
    max-width: 1200px;
    width: 100%;
    background-color: #f79f36;
    border-radius: 20px; 
    padding: 50px 30px;
    text-align: center;
}

.layanan-title {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 30px;
}

.layanan-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.layanan-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 350px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.layanan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.layanan-img {
    width: 100%;
    height: 220px;
    border-radius: 10px;
    object-fit: cover;
    border: 5px solid white;
}

.layanan-heading {
    font-size: 20px;
    font-weight: bold;
    color: #002A45;
    margin: 15px 0 10px;
}

.layanan-text {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;
}

.layanan-button {
    background-color: #f79f36;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.layanan-button:hover {
    background-color: #002A45;
}

@media (max-width: 1024px) {
    .layanan-wrapper {
        gap: 20px;
    }

    .layanan-card {
        max-width: 350px;
    }

    .layanan-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .layanan-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .layanan-card {
        width: 90%;
        max-width: 350px;
    }

    .layanan-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .layanan-card {
        width: 100%;
    }

    .layanan-title {
        font-size: 24px;
    }
}


.contact {
  background: linear-gradient(to bottom right, #e8f0fe, #fdfbfb);
  padding: 60px 40px; 
  text-align: center;
  color: #0b2545;
}
.contact {
  background: linear-gradient(to bottom right, #e8f0fe, #fdfbfb);
  padding-top: 1px;
  padding-right: 40px;
  padding-bottom: 60px;
  padding-left: 40px;
  text-align: center;
  color: #0b2545;
}

.contact-title {
  font-size: 36px;
  font-weight: 700;
  margin-top: 5px;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 16px;
  margin-bottom: 50px;
  color: #555;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.contact-card {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #f57c00;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 24px;
  margin-bottom: 20px;
}

.contact-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-card p a {
  color: #0b2545;
  font-weight: 500;
  text-decoration: none;
}

.contact-card p a:hover {
  color: #f57c00;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 28px;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .contact-card {
    padding: 10px 5px;
  }
}


.footer-glass {
  background-color: #002A45;
  color: #fff;
  padding: 70px 30px 30px;
  position: relative;
}

.footer-glass-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-glass-box {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: #f79f36;
}

.footer-subtitle {
  font-size: 18px;
  margin-bottom: 10px;
  color: #f79f36;
  font-weight: 600;
}

.footer-text {
  font-size: 15px;
  color: #ddd;
  line-height: 1.6;
}

.footer-list {
  list-style: none;
  padding: 0;
  font-size: 15px;
  color: #ccc;
}

.footer-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.footer-list li i {
  margin-right: 10px;
  color: #f79f36;
  font-size: 16px;
}

.footer-list li:hover {
  transform: translateX(5px);
  color: #fff;
}


.footer-icons {
  display: flex;
  gap: 15px;
}

.footer-icons a {
  background-color: rgba(255, 255, 255, 0.1);
  color: #f79f36;
  font-size: 18px;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-icons a:hover {
  background-color: #f79f36;
  color: #fff;
  transform: scale(1.1);
}

.footer-glass-bottom {
  text-align: center;
  padding-top: 30px;
  font-size: 13px;
  color: #bbb;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
}

.footer-center {
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-center {
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: stretch; 
  justify-content: center;
}

@media (max-width: 768px) {
  .footer-glass {
    padding: 50px 20px;
  }

  .footer-text,
  .footer-title,
  .footer-subtitle {
    text-align: center;
  }

  .footer-icons {
    justify-content: center;
  }

  .footer-center {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.form-container {
    max-width: 900px;
    margin: 40px auto 60px;
    padding: 80px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', sans-serif;
}

.benefit {
    margin: 50px auto;
    max-width: 960px;
    padding: 0 20px;
}

.card {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin: 40px auto;        
    max-width: 960px;         
    padding-left: 30px;       
    padding-right: 30px;
}

.benefit h2 {
    font-size: 42px;
    color: #34495e;
    margin-bottom: 20px;
    text-align: center;
}

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

.benefit ul li {
    font-size: 20px;
    color: #555;
    margin-bottom: 16px;
    padding-left: 25px;
    position: relative;
}

.benefit ul li::before {
    content: "✔";
    color: #27ae60;
    position: absolute;
    left: 0;
}

.jenis-konseling {
    max-width: 960px;
    margin: 40px auto;
    padding: 0 20px;
}

.jenis-konseling h3 {
    font-size: 30px;
    color: #34495e;
    margin-bottom: 20px;
    text-align: center;
}

.jenis-konseling strong{
    font-size: 20px;
}

.list-konseling {
    list-style-type: disc;
    padding-left: 38px;
    color: #555;
    font-size: 20px;
}

.list-konseling li {
    margin-bottom: 16px;
}

.harga {
    background-color: #fdf2e9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
    text-align: center;
    max-width: 960px;
    margin: 40px auto;
}

.harga h3 {
    font-size: 30px;
    color: #e67e22;
    margin-bottom: 15px;
}

.harga ul {
    list-style-type: none;
    padding: 0;
    font-size: 18px;
    color: #444;
}

.harga li {
    margin-bottom: 10px;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.btn-kembali,
.btn-daftar {
    padding: 12px 20px;
    background-color: #e67e22;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-kembali {
    background-color: #bdc3c7;
}

.btn-kembali:hover {
    background-color: #95a5a6;
}

.btn-daftar:hover {
    background-color: #d35400;
}

@media (max-width: 768px) {
    .card {
        margin: 20px 15px;
        padding: 20px;
    }
    .benefit h2,
    .jenis-konseling h3,
    .jenis-konseling strong,
    .harga h3 {
        font-size: 26px;
    }

    .benefit ul li,
    .harga ul li,
    .list-konseling li {
        font-size: 16px;
    }

    .btn-daftar,
    .btn-kembali {
        width: 100%;
        padding: 10px 0;
        font-size: 16px;
    }

    .button-group {
        flex-direction: column;
        gap: 10px;
    }
}

.form-section h2 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    font-size: 16px;
    color: #444;
    margin-bottom: 8px;
}

form input, form select, form textarea {
    padding: 12px;
    font-size: 16px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s;
}

form input:focus, form select:focus, form textarea:focus {
    border-color: #e67e22;
    outline: none;
}

form button {
    background-color: #2c3e50;
    color: white;
    padding: 14px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #e67e22;
}

@media (max-width: 768px) {
    .form-container {
        padding: 15px;
    }

    form input, form select, form textarea, form button {
        font-size: 14px;
    }

    .harga .btn-daftar {
        font-size: 14px;
        padding: 10px 18px;
    }
}

.custom-header {
  background-color: #002A45 !important;
}

.custom-btn {
  background-color: #002A45 !important;
  color: white !important;
  border: none;
}

.custom-btn:hover {
  background-color: #014066 !important;
}

