/* ========================================= */
/* DETAIL PAGE LAYOUT STYLES - detail-style.css */
/* ========================================= */

.detail-hero {
    padding-top: 150px; /* Jarak dari header */
    padding-bottom: 80px;
    background: #e6f3ff; /* Warna latar belakang lembut */
    text-align: center;
}
.detail-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #019ff8; /* Biru Primer */
    margin-bottom: 15px;
}
.detail-hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #555;
    line-height: 1.8;
}

/* Konten Utama Section */
.detail-section {
    padding: 60px 0;
    background: #fff; /* Latar belakang putih untuk menonjolkan konten */
}
.detail-section:nth-of-type(odd) {
    background: #fcfcfc; /* Warna sedikit berbeda untuk pemisah visual */
}
.detail-section h2 {
    text-align: left;
    margin-bottom: 25px;
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    border-bottom: 3px solid #019ff8;
    display: inline-block;
    padding-bottom: 5px;
}
.detail-section p {
    font-size: 16px;
    margin-bottom: 20px;
}
.detail-section img {
    margin: 30px auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.feature-card {
    padding: 30px;
    background: #fff;
    border-left: 5px solid #019ff8;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #019ff8;
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 15px;
    color: #555;
}

/* CTA Banner */
.cta-banner {
    background: #2c3e50; /* Warna gelap */
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}
.cta-banner p {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .detail-hero h1 { font-size: 36px; }
    .detail-hero { padding-top: 100px; }
    .feature-grid { grid-template-columns: 1fr; }
    .detail-section h2 { font-size: 28px; }
    .cta-banner p { font-size: 20px; }
}