/* ==========================================================================
   (SYARAT & PANDUAN UKURAN)
   ========================================================================== */

/* Body khusus halaman statis dengan background modern */
.page-body {
    background-color: #fdfbfb;
    background-image: 
        radial-gradient(at 47% 33%, hsla(215, 98%, 61%, 0.03) 0px, transparent 50%),
        radial-gradient(at 82% 65%, hsla(218, 97%, 72%, 0.04) 0px, transparent 50%);
}

/* Wrapper untuk konten utama halaman */
.page-wrapper {
    padding: 120px 0 80px;
    min-height: 70vh;
}

.page-wrapper .container {
    max-width: 1000px;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Header Halaman */
.page-header {
    text-align: center;
    margin-bottom: 50px;
}
.page-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}
.page-header p {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Grid untuk bagian konten di halaman Syarat */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.content-section {
    background-color: #fafafa;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.content-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.section-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--accent-color);
    opacity: 0.5;
}
.content-section h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-right: 40px; /* Agar tidak bertabrakan dengan ikon */
}
.content-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.content-section ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #555;
}
.content-section ul li i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.1rem;
    margin-top: 3px;
}
.content-section ul li i.fa-exclamation-triangle {
    color: #ffc107;
}
.content-section ul li i.fa-ban {
    color: #dc3545;
}

/* Box untuk pemberitahuan */
.notice-box {
    display: flex;
    align-items: center;
    background-color: var(--accent-color);
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
}
.notice-box i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
}
.notice-box p {
    margin: 0;
    font-size: 1rem;
    color: var(--secondary-color);
}

/* ==========================================================================
   STYLE KHUSUS HALAMAN PANDUAN UKURAN (LAYOUT KARTU)
   ========================================================================== */

.size-guide-list {
    display: flex;
    flex-direction: column;
    gap: 25px; /* Jarak antar kartu */
    margin-bottom: 40px;
}

.size-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

/* Efek hover untuk kartu */
.size-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.08);
}

.size-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.size-card h3 i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.3rem;
}

.size-card p {
    margin: 0;
    padding-left: 45px; /* Sejajarkan teks dengan judul */
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--light-text);
}

/* Tidak perlu perubahan pada .notice-box, sudah cocok */

/* Responsive untuk memastikan tetap rapi di mobile */
@media (max-width: 768px) {
    .size-card {
        padding: 20px;
    }
    .size-card h3 {
        font-size: 1.3rem;
    }
    .size-card p {
        padding-left: 0; /* Di mobile, tidak perlu padding kiri */
        margin-top: 10px;
    }
}