/* =========================================
   2. STORY SECTION (Clean White)
   ========================================= */
.story-section {
    padding: 100px 0;
    background-color: #fff;
    color: #333;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Kolom: Teks & Gambar */
    gap: 60px;
    align-items: center;
}

/* Bagian Teks */
.subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
    line-height: 1.2;
}

.lead-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

.story-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

/* Statistik Row */
.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

/* Bagian Gambar */
.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

/* Kotak Dekorasi di belakang gambar */
.image-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background-color: var(--primary-color);
    border-radius: 10px;
    z-index: 1;
    opacity: 0.2;
}