body {
    padding-top: 70px;
}

/* HERO */
        .hero {
            background: url('landing-page.jpg') center/cover no-repeat;
            color: #fff;
            padding: 100px 40px;
            text-align: center;
            background-color: #1e3799;
        }

        .hero h1 {
            font-size: 40px;
            margin-bottom: 15px;
        }

        .hero p {
            font-size: 18px;
            margin-bottom: 25px;
        }

        .hero .btn {
            display: inline-block;
            padding: 12px 25px;
            margin: 5px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
        }

        .btn-telp {
            background: #fbc531;
            color: #000;
        }

        .btn-wa {
            background: #25D366;
            color: #fff;
        }

        /* BLURB */
        .blurb-section {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            padding: 60px 40px;
            background: #f5f6fa;
        }

        .et_pb_blurb {
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }

        .et_pb_main_blurb_image {
            font-size: 40px;
            color: #0a3d62;
            margin-bottom: 15px;
        }

        .et_pb_module_header {
            font-size: 20px;
            margin-bottom: 10px;
        }

        /* ABOUT */
        .about {
            padding: 60px 40px;
        }

        .about h2 {
            font-size: 28px;
            margin-bottom: 15px;
            color: #0a3d62;
        }

        .about p {
            max-width: 800px;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                gap: 10px;
            }

            .blurb-section {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 28px;
            }
        }
		.container {
    max-width: 1200px;
    margin: auto;
}
.layanan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* kiri - kanan */
    gap: 30px;
    max-width: 800px;
    margin: auto; /* center container */
}

.layanan-item {
    background: #fff;
    padding: 25px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 8px rgba(0,0,0,0.08);
}

.layanan-item .et_pb_main_blurb_image {
    font-size: 26px;
    color: #e02b20;
    margin-bottom: 10px;
}

/* RESPONSIVE HP */
@media (max-width: 768px) {
    .layanan-grid {
        grid-template-columns: 1fr; /* jadi 1 kolom */
    }
}


.layanan-item h4 {
    margin: 0;
    font-size: 16px;
}

.layanan-item .et_pb_main_blurb_image {
    color: #e02b20;
    font-size: 20px;
    font-weight: bold;
}

/* RESPONSIVE */
@media(max-width: 768px){
    .layanan-grid {
        flex-direction: column;
    }
}


.card img {
    height: 220px;
    object-fit: cover;
}

/* SCROLL TO TOP */
.et_pb_scroll_top {
    position: fixed;
    right: 20px;
    bottom: 30px;
    background: #e02b20;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    display: none;
    z-index: 999;
    font-size: 20px;
}

/* FOOTER */
#main-footer {
    background: #111;
    color: #ccc;
    margin-top: 60px;
}

#main-footer a {
    color: #fff;
    text-decoration: none;
}

#footer-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 50px 0;
    text-align: center;
}

.footer-widget img {
    max-width: 100%;
}

.footer-widget h4 {
    color: #fff;
    margin-bottom: 10px;
}

#footer-bottom {
    background: #000;
    padding: 20px 0;
    text-align: center;
}

.et-social-icons {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin-bottom: 10px;
}

.et-social-icons li a {
    color: #ccc;
    font-size: 14px;
}

/* RESPONSIVE */
@media(max-width: 768px){
    #footer-widgets {
        grid-template-columns: 1fr;
    }
}

