body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    text-align: center;
    width: 80%;
    margin: 0 auto;
}

header {
    background-color: #324851;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}


header h1 {
    margin: 0;
}

.features {
    padding: 20px 0;
    background-color: #F4F4F4;
    list-style-type: none;
}

.feature {
    text-align: center;
    margin-bottom: 30px;
}

.feature img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

footer {
    background-color: #34675C;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.portfolio-row {
    display: flex;
    justify-content: center;
    margin-bottom: 30px; /* Jarak antar baris */
}

.portfolio-item {
    margin: 0 15px; /* Jarak antar kolom */
    text-align: center;
}

.portfolio-image {
    width: 100%;
    max-width: 300px; /* Lebar maksimum gambar */
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease; /* Efek hover */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); /* Tambahkan bayangan */
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1); /* Perbesar gambar saat dihover */
}


.pricing {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.pricing-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-column {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    margin: 0 10px;
    text-align: left;
    flex: 1;
    max-width: 300px; /* Lebar maksimum kolom */
}

.pricing-column h3 {
    margin-top: 0;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.subprice {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.features li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .pricing-column {
        flex-basis: 100%; /* Setiap kolom mengambil 100% lebar pada layar kecil */
        margin-bottom: 30px; /* Tambahkan jarak antar kolom pada layar kecil */
    }
}

.btn {
    display: inline-block;
    background-color: #29562E;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #1E3C1F;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    
    z-index: 9999;
}

.whatsapp-button img {
    width: 100%;
    height: auto;
}


@media (max-width: 768px) {
    .whatsapp-button {
        display: block; /* Tampilkan tombol hanya pada layar seluler */
    }
}
