body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

nav {
    background-color: #6D123F;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 60px;
}

nav .logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    line-height: 60px;
}

nav .logo img {
    max-height: 30px;
    display: block;
    margin: 0 auto;
    margin-top: 0;
    margin-bottom: 0;
}

nav .menu {
    display: flex;
    align-items: center;
}

nav .menu-item {
    position: relative;
}

nav .menu a {
    color: white;
    text-decoration: none;
    padding: 5px 10px; /* Adjust padding for mobile view */
    display: block; /* Ensure links are block elements */
    width: auto; /* Adjust width to fit content */
    margin-left: 0; /* Remove left margin for mobile view */
}

nav .menu a:hover {
    color: #128FC9;
}

h1 {
    margin-bottom: 15px;
    color: #333;
    font-size: 20px;
}

h2 {
    margin-bottom: 15px;
    color: #333;
    font-size: 18px;
}

h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 16px;
}

p {
    text-align: justify;
    color: #666;
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-top: 20px;
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 5px;
    text-align: center;
}

ul {
    text-align: justify;
    color: #666;
}

.cta {
    text-align: center;
    margin-top: 20px;
}

.cta a {
    display: inline-block;
    text-decoration: none;
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta a:hover {
    background-color: #45a049;
}

/* whatsapp button + add to cart button */

.button-container {
    display: flex;
    align-items: center;
}

.add-to-cart-button,
.whatsapp-button {
    margin-top: 20px;
    margin-right: 10px; /* Adjust the spacing between buttons as needed */
}

.whatsapp-button a {
    display: inline-block;
    text-decoration: none;
    background-color: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.whatsapp-button a:hover {
    background-color: #128C7E;
}

/* Cart icon on nav-bar */

.cart-icon-container {
    position: relative;
}

.cart-icon {
    cursor: pointer;
    color: white;
    text-decoration: none;
    padding: 5px 10px; /* Adjust padding for mobile view */
    display: block; /* Ensure links are block elements */
    width: auto; /* Adjust width to fit content */
    margin-left: 0;
}

.cart-notif {
    background-color: red;
    color: white;
    font-size: 12px;
    padding: 1px 6px;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    right: -4px;
    display: none; /* Awalnya disembunyikan */
}

/* Cart */

.add-to-cart-btn {
    display: inline-block;
    text-decoration: none;
    background-color: #b60e0e;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
    cursor: pointer;
}

.add-to-cart-btn:hover {
    background-color: #510a0a;
}

/* Modal Cart Styles */
.cart-modal {
    display: none; /* Modal awalnya disembunyikan */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.cart-modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 300px;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

#cart-items {
    list-style: none;
    padding: 0;
}

#total-price {
    font-weight: bold;
    margin-top: 10px;
}

.whatsapp-btn-on-cart  {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    z-index: 100; /* Pastikan tombol di atas elemen lain */
    position: relative; /* Memastikan tombol diatur secara relatif ke modal */
}

.whatsapp-btn-on-cart:hover {
    background-color: #1DA851; /* Warna hijau lebih gelap saat hover */
}

/* Notification Styles */
.notification {
    display: none; /* Awalnya disembunyikan */
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Footer */

footer {
    margin-top: 20px;
    background-color: #6D123F;
    color: #fff;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    max-width: 800px;
}

.footer-logo img {
    max-height: 40px;
    margin-bottom: -30px;
}

.footer-sitemap, .footer-consumer-service, .footer-social {
    width: 30%;
    margin-bottom: 20px;
}

.footer-sitemap h3, .footer-consumer-service h3, .footer-social h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff;
}

.footer-sitemap ul {
    list-style: none;
    padding: 0;
}

.footer-sitemap ul li {
    margin-bottom: 5px;
}

.footer-sitemap ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-sitemap ul li a:hover {
    text-decoration: underline;
}

.footer-consumer-service p {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
}

.footer-bottom {
    background-color: #500a2c;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 14px;
}

.footer-bottom a {
    color: #fff;
}

.footer-bottom span {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    max-width: 800px;
}

.footer-social {
    align-items: center;
}

.footer-social span {
    margin-right: 10px;
}

.footer-social a {
    margin: 0 10px;
    color: #fff;
    text-decoration: none;
}

.footer-social a:hover {
    color: #e5097f;
}

.footer-social i {
    font-size: 20px;
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .footer-sitemap, .footer-consumer-service, .footer-social {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-sitemap h3, .footer-consumer-service h3, .footer-social h3 {
        font-size: 14px;
    }

    .footer-consumer-service p {
        font-size: 13px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

    .footer-bottom span {
        flex-direction: column;
        text-align: center;
        max-width: 100%;
    }

    .footer-logo img {
        max-height: 40px;
        margin-bottom: 10px;
    }

    .footer-social a {
        margin: 0 5px;
        font-size: 18px;
    }

    .footer-social i {
        font-size: 18px;
    }

    .footer-sitemap ul li {
        margin-bottom: 10px;
    }

    .footer-sitemap ul li a {
        font-size: 14px;
    }
}

/* Section */

.section {
    padding: 20px;
    background-color: #f9f9f9;
}

.section h2 {
    margin-bottom: 20px;
}

.products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.product {
    flex: 1 1 calc(33.333% - 40px); /* 3 kolom untuk desktop */
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.product img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.product h3 {
    margin: 10px 0;
    font-size: 18px;
}

.product p {
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .product {
        flex: 1 1 calc(50% - 40px); /* 2 kolom untuk tampilan mobile */
    }
}

.portfolio-section {
    padding: 20px;
    background-color: #f9f9f9;
}

.portfolio-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.gallery {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item p {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
}

.faq-section {
    padding: 20px;
    background-color: #f9f9f9;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: #fff;
    padding: 15px;
    cursor: pointer;
    position: relative;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f1f1f1;
}

.faq-answer {
    padding: 15px;
    display: none;
    background-color: #fff;
    border-top: 1px solid #ddd;
}

.faq-answer p {
    margin: 0;
}

.more-content {
    display: none;
}

.read-more-btn {
    color: #007bff;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: 16px;
    text-decoration: underline;
    margin-top: 10px;
    display: inline-block;
}

.read-more-btn:focus {
    outline: none;
}

.services-section {
    padding: 20px;
    background-color: #f9f9f9;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.services-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    background-color: #128FC9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-item h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #FFFFFF;
}

.service-item p {
    color: #FFFFFF;
    font-size: 14px;
    margin-bottom: 15px;
}

.service-item button {
    background-color: #007bff;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-item button:hover {
    background-color: #0056b3;
}

@media (min-width: 768px) {
    .services-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-item {
        flex: 1 1 calc(30% - 20px);
        margin-bottom: 20px;
    }
}

.event-management-section {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.event-management-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.event-management-section p {
    color: #555;
    font-size: 16px;
    margin-bottom: 15px;
    text-align: justify;
}

.event-management-section ul {
    list-style-type: disc;
    margin: 15px 0;
    padding-left: 20px;
    color: #555;
}

.event-management-section ul li {
    margin-bottom: 10px;
}

.event-management-section .cta-button {
    display: block;
    width: fit-content;
    margin: 20px auto 0;
    padding: 10px 20px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.event-management-section .cta-button:hover {
    background-color: #0056b3;
}

.read-more-button {
    display: block;
    margin: 30px 0 0 0;
    padding: 10px 0;
    background-color: transparent;
    color: #007bff;
    border: none;
    text-align: left;
    text-decoration: underline;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.read-more-button:hover {
    color: #0056b3;
}

.services {
    display: grid;
    gap: 20px;
}

.service {
    background-color: #ffffff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.service h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
}

.service p {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.read-more-button {
    display: block;
    margin: 30px 0 0 0;
    padding: 10px 0;
    background-color: transparent;
    color: #007bff;
    border: none;
    text-align: left;
    text-decoration: underline;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.read-more-button:hover {
    color: #0056b3;
}

@media (min-width: 768px) {
    .services {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .services {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-detail {
    padding: 20px;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dua kolom dengan lebar yang sama */
    gap: 20px; /* Jarak antara kolom */
}

.product-image img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.product-info {
    display: flex;
    flex-direction: column;
}

.product-description {
    margin: 10px 0;
}

.product-price {
    font-size: 1.5rem;
    margin: 10px 0;
}

.product-specifications {
    margin: 20px 0;
}

.product-specifications ul {
    list-style: none;
    padding: 0;
}

.product-reviews {
    margin: 20px 0;
}

.review {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.product-actions button {
    display: inline-block;
    text-decoration: none;
    background-color: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}

@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr; /* Satu kolom pada layar kecil */
    }

    /* Reorder product-image to appear after product-info */
    .product-image {
        order: 2;
    }

    .product-info {
        order: 1;
    }
}

/* Styling untuk bagian ulasan produk */
.product-reviews {
    margin: 20px 0;
}

.product-reviews h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.review {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.review-author {
    font-weight: bold;
    margin-bottom: 5px;
}

.review-author span {
    font-weight: normal;
}

.review-star {
    margin-top: 5px;
    color: #FDD663;
}

.review-text {
    margin-top: 5px;
    color: #333;
}

.review-author, .review-text {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .review-author, .review-text, .review-star {
        font-size: 0.9rem;
    }
}

/* Styling untuk kontainer pencarian */
.search-container {
    max-width: 800px;
    text-align: center; /* Menempatkan kolom pencarian di tengah kontainer */
    margin: auto;
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.search-form {
    display: flex; /* Menyusun elemen di dalam form */
    justify-content: center; /* Menyusun elemen di tengah horizontal */
    align-items: center; /* Menyusun elemen di tengah vertikal */
    max-width: 100%; /* Memastikan lebar maksimum sesuai dengan layar */
    margin: auto; /* Menempatkan form di tengah */
}

.search-wrapper {
    position: relative; /* Posisi relatif untuk menempatkan ikon */
    width: 100%; /* Menggunakan lebar penuh */
}

.search-input {
    width: calc(100% - 40px); /* Mengurangi lebar input agar tidak melebihi lebar kontainer */
    padding: 10px 40px 10px 10px; /* Jarak di dalam input (10px di kiri, 40px di kanan untuk ikon) */
    border: 1px solid #ccc; /* Batas input */
    border-radius: 4px; /* Sudut membulat */
    font-size: 1rem; /* Ukuran font */
}

.search-icon {
    position: absolute; /* Menempatkan ikon di atas input */
    right: 10px; /* Jarak dari sisi kanan */
    top: 50%; /* Menempatkan ikon di tengah vertikal */
    transform: translateY(-50%); /* Menyelaraskan vertikal ikon */
    border: none; /* Menghilangkan batas tombol */
    background: transparent; /* Latar belakang transparan */
    color: #128FC9; /* Warna ikon */
    font-size: 1.2rem; /* Ukuran font ikon */
    cursor: pointer; /* Mengubah kursor menjadi pointer */
}

.search-icon:hover {
    color: #00468B; /* Warna ikon saat hover */
}

/* Media query untuk perangkat mobile */
@media (max-width: 600px) {
    .search-input {
        padding: 10px 30px 10px 10px; /* Mengurangi padding untuk perangkat mobile */
        font-size: 0.9rem; /* Mengurangi ukuran font untuk perangkat mobile */
    }

    .search-icon {
        right: 10px; /* Menyesuaikan jarak dari sisi kanan */
        font-size: 1rem; /* Mengurangi ukuran ikon untuk perangkat mobile */
    }
}

/* Styling untuk kontainer spesifikasi produk */
.product-specifications {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.product-specifications h2 {
    text-align: center;
    margin-bottom: 20px;
}

.specs-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.specs-column {
    flex: 1;
    min-width: 300px; /* Lebar minimum kolom */
    padding: 10px;
    box-sizing: border-box;
}

.specs-column h3 {
    margin-top: 0;
    color: #333;
}

.specs-column ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.specs-column li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.specs-column li strong {
    color: #007bff; /* Warna untuk label spesifikasi */
}

/* Styling untuk tabel spesifikasi */
.specs-table,
.features-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.specs-table th,
.features-table th,
.specs-table td,
.features-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.specs-table th,
.features-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.specs-table th[colspan="2"] {
    text-align: center;
}

.features-table thead {
    background-color: #f4f4f4;
}

.features-table td {
    font-size: 0.9rem;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .specs-table,
    .features-table {
        font-size: 0.9rem;
    }

    .specs-table th,
    .features-table th,
    .specs-table td,
    .features-table td {
        padding: 6px;
    }
}

.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #25d366; /* Warna hijau untuk WhatsApp */
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    text-decoration: none;
    color: #ffffff;
    font-size: 21px;
}

.floating-button.phone {
    background-color: #34b7f1; /* Warna biru untuk telepon */
}

.floating-button:hover {
    transform: scale(1.1);
}

.floating-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.register-form {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

.register-form form {
    display: flex;
    flex-direction: column;
}

.register-form label {
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.register-form input {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.register-form button {
    padding: 0.75rem;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.register-form button:hover {
    background-color: #555;
}

.login-form {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

.login-form form {
    display: flex;
    flex-direction: column;
}

.login-form label {
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.login-form input {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.login-form button {
    padding: 0.75rem;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.login-form button:hover {
    background-color: #555;
}

.login-form p {
    margin-top: 1rem;
}

.login-form a {
    color: #333;
    text-decoration: none;
}

.login-form a:hover {
    text-decoration: underline;
}

.search-results h1 {
    margin-bottom: 1rem;
}

.results-list {
    margin-top: 1rem;
}

.result-item {
    background-color: #f9f9f9;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.result-item h2 {
    margin-top: 0;
}

.result-item p {
    margin: 0.5rem 0;
}

.result-link {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.result-link:hover {
    text-decoration: underline;
}

/* breadcrumb */

.breadcrumb {
    font-size: 14px;
    color: #666; /* Base color for breadcrumb text */
    margin-bottom: 15px; /* Space between breadcrumb and other content */
}

.breadcrumb a {
    color: #666; /* Link color */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}

.breadcrumb a:hover {
    color: #666; /* Darker color on hover */
}

.breadcrumb span {
    color: #666; /* Color for the current page/item text */
}

.breadcrumb > span,
.breadcrumb > a {
    display: inline-block;
    margin-right: 5px; /* Space between items */
}

.breadcrumb > span:last-child {
    margin-right: 0; /* Remove space after the last item */
}

.separator-icon {
    margin: 0 8px; /* Tambahkan jarak di kiri dan kanan icon */
    vertical-align: middle; /* Menyelaraskan icon dengan teks */
}

/* label */
.label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
    text-decoration: none; /* Menghilangkan garis bawah pada link */
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.label:hover {
    background-color: #e0e0e0;
}

.label-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bubble {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.bubble a {
    font-size: 14px;
    color: #00796b;
    text-align: center;
    text-decoration: none; /* Menghilangkan garis bawah pada link */
}

/* label find page */

.label-find-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.label-find {
    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: transform 0.3s, box-shadow 0.3s;
}

.label-find:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.label-find img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
}

.label-find a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    font-weight: bold;
}

.label-find span {
    display: block;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .label-find-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .label-find-container {
        grid-template-columns: 1fr;
    }
}

/* paragraf pembuka */
.paragraf-pembuka p {
    font-weight: bold; /* Membuat teks menjadi tebal */
    font-style: italic; /* Membuat teks menjadi miring */
    position: relative;
}

.paragraf-pembuka p::before {
    margin-right: 4px; /* Menambahkan jarak antara tanda kutip awal dan teks */
}

.paragraf-pembuka p::after {
    margin-left: 4px; /* Menambahkan jarak antara tanda kutip akhir dan teks */
}

/* image row */

.image-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px; /* Menambahkan jarak antar gambar */
    padding-bottom: 20px;
}

.image-row img {
    max-width: 253px;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    flex-basis: 30%; /* Mengatur setiap gambar mengambil 30% dari lebar baris */
}

@media (max-width: 768px) {
    .image-row {
        flex-direction: column;
        align-items: center;
    }

    .image-row img {
        max-width: 100%;
        height: auto;
        flex-basis: 100%;
    }
}

/* table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    overflow-x: auto; /* Tambahkan overflow untuk scroll */
    display: block; /* Jadikan tabel sebagai blok */
}

/* table header and cell styling */
th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f4f4f4;
    font-weight: bold;
}

/* Responsive table for mobile devices */
@media (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto; /* Tambahkan scroll horizontal */
        white-space: nowrap; /* Hindari pemisahan teks ke baris baru */
    }

    th, td {
        white-space: nowrap; /* Menjaga kolom tetap satu baris */
    }
    
    tr {
        display: table-row; /* Menjaga struktur baris */
    }
}

.map-container {
            width: 100%;
            height: 400px; /* Menentukan tinggi peta */
            border: 1px solid #ccc; /* Menambahkan border opsional */
        }

/* Menyembunyikan container layanan secara default */
.layanan-container {
    display: none; /* Pastikan defaultnya adalah none untuk menyembunyikan */
    margin: 20px auto; /* Tambahkan margin untuk jarak dari tepi halaman */
    padding: 0 20px; /* Tambahkan padding untuk memberikan ruang di kiri dan kanan */
    max-width: 1200px; /* Maksimal lebar kontainer */
}

/* Mengatur tampilan kolom layanan */
.layanan-container.active { /* Mengubah kelas untuk menampilkan grid saat aktif */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.layanan-item {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left; /* Mengatur teks dalam item layanan menjadi rata kiri */
    background-color: #f9f9f9;
    transition: background-color 0.3s;
}

.layanan-item ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.layanan-item li {
    padding: 5px 0;
}

.layanan-item a {
    text-decoration: none; /* Menghilangkan garis bawah pada link */
    color: #333; /* Warna teks link */
}

.layanan-item a:hover {
    text-decoration: underline; /* Garis bawah saat link dihover */
}

.layanan-title {
    display: block; /* Agar span tampil sebagai blok dan menempati seluruh lebar item */
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left; /* Mengatur teks judul layanan menjadi rata kiri */
}

.layanan-item:hover {
    background-color: #f0f0f0;
}

/* Style default untuk desktop sudah ditentukan di atas */

/* Tampilan responsif untuk perangkat dengan lebar maksimum 768px (tablet dan ponsel) */
@media (max-width: 768px) {
    .layanan-container.active {
        grid-template-columns: repeat(2, 1fr); /* Ubah menjadi 2 kolom untuk tablet dan ponsel */
        gap: 15px; /* Kurangi jarak antar kolom */
    }

    .layanan-item {
        padding: 8px; /* Kurangi padding untuk elemen layanan */
    }

    .layanan-title {
        font-size: 1.1em; /* Sesuaikan ukuran font untuk judul layanan */
        margin-bottom: 8px;
    }
}

/* Tampilan responsif untuk perangkat dengan lebar maksimum 480px (ponsel kecil) */
@media (max-width: 480px) {
    .layanan-container.active {
        grid-template-columns: 1fr; /* Ubah menjadi 1 kolom untuk ponsel kecil */
        gap: 10px; /* Kurangi lagi jarak antar item */
    }

    .layanan-item {
        padding: 6px; /* Sesuaikan padding untuk ponsel kecil */
    }

    .layanan-title {
        font-size: 1em; /* Sesuaikan ukuran font lebih kecil untuk judul layanan */
        margin-bottom: 5px;
    }

    .layanan-item a {
        font-size: 0.9em; /* Kurangi ukuran font untuk link */
    }
}

/* post row */

.post-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px; /* Menambahkan jarak antar gambar */
}

.image-row img {
    max-width: 253px;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    flex-basis: 30%; /* Mengatur setiap gambar mengambil 30% dari lebar baris */
}

@media (max-width: 768px) {
    .image-row {
        flex-direction: column;
        align-items: center;
    }

    .image-row img {
        max-width: 100%;
        height: auto;
        flex-basis: 100%;
    }
}

/* Social Share */

.share-buttons {
    display: flex;
    gap: 10px;
    margin: 20px;
    justify-content: center;
}

.share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.share-button.facebook {
    background-color: #3b5998;
}

.share-button.twitter {
    background-color: #1da1f2;
}

.share-button.linkedin {
    background-color: #0077b5;
}

.share-button.whatsapp {
    background-color: #25d366;
}

.share-button:hover {
    opacity: 0.8;
}

/* Share Button Head */

.share-button-head {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    transition: background-color 0.3s ease;
}

.share-button-head.facebook {
    background-color: #3b5998;
}

.share-button-head.twitter {
    background-color: #1da1f2;
}

.share-button-head.linkedin {
    background-color: #0077b5;
}

.share-button-head.whatsapp {
    background-color: #25d366;
}

.share-button-head:hover {
    opacity: 0.8;
}

/* author dan share button jadi satu baris */

.author-share-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author {
    margin: 0;
}

/* Post Image */

.post-image {
    width: 100%; /* Membuat gambar menyesuaikan lebar kontainer */
    height: auto; /* Menjaga rasio aspek gambar */
    border-radius: 10px; /* Menambahkan radius pada border */
    display: block; /* Menghilangkan jarak atau margin bawah */
    max-width: 100%; /* Menghindari gambar melebihi lebar kontainer */
}

/* Base styling for author profile */
.author-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    flex: 1;
}

.author-details h3 {
    margin: 0;
    font-size: 1.5em;
    color: #333;
}

.author-details p {
    margin-top: 10px;
    font-size: 1em;
    color: #666;
}

.author-social {
    margin-top: 10px;
}

.social-link {
    margin-right: 10px;
    text-decoration: none;
    color: #0073e6;
    font-weight: bold;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #005bb5;
}

/* Responsive styling */
@media (max-width: 768px) {
    .author-profile {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    .author-image {
        width: 80px;
        height: 80px;
    }

    .author-details h3 {
        font-size: 1.3em;
    }

    .author-details p {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .author-profile {
        padding: 8px;
    }

    .author-image {
        width: 60px;
        height: 60px;
    }

    .author-details h3 {
        font-size: 1.2em;
    }

    .author-details p {
        font-size: 0.8em;
    }

    .social-link {
        font-size: 0.9em;
        margin-right: 5px;
    }
}

/* artikel */
.article-list {
    list-style-type: none;
    padding: 0;
}
.article-item {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #FFFFFF;
    border: 1px solid #ddd;
    transition: background-color 0.3s ease;
}
.article-item:hover {
    background-color: #f0f0f0;
}
.article-title {
    font-size: 1em;
    color: #333;
    margin-bottom: 10px;
}
.article-title a {
    text-decoration: none;
    color: #333;
}
.article-title a:hover {
    text-decoration: underline;
}
.article-meta {
    font-size: 0.9em;
    color: #777;
}
.article-excerpt {
    font-size: 1em;
    color: #555;
}