:root {
    --bg-navbar: #F5F5F4;
    --text-dark: #374151;
    --text-light: #f9fafb;
    --accent: #5A7D7C;
    --accent-light: #7A9D9C;
    --shadow: rgba(0, 0, 0, 0.07);
    --text-muted: #6B7280;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    background: #f8fbfa;
}



/* About Section */
.about {
    min-height: 100vh;
    padding: 8rem 0 5rem 0;
    background: linear-gradient(135deg, #f8fbfa 0%, #edf5f0 100%);
    position: relative;
    display: flex;
    align-items: center;
    box-sizing: border-box; /* <-- TAMBAHKAN INI */
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%235A7D7C" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
}

/* Main Content Layout */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    width: 100%;
}

/* Story Section */
.about-story {
    background: linear-gradient(145deg, #ffffff, #fafbfa);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 
        0 20px 50px rgba(90, 125, 124, 0.06),
        0 10px 25px rgba(55, 65, 81, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(90, 125, 124, 0.05);
    position: relative;
    overflow: hidden;
    height: fit-content;
}

.about-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.story-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.story-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.story-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.story-highlight {
    background: linear-gradient(135deg, rgba(90, 125, 124, 0.08), rgba(122, 157, 156, 0.05));
    padding: 1.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--accent);
    font-style: italic;
    color: var(--accent);
    font-weight: 500;
    margin-top: 2rem;
}

/* Statistics Section */
.statistics {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    padding: 3rem;
    border-radius: 24px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: fit-content;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="stats-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="white" opacity="0.08"/><circle cx="10" cy="10" r="1" fill="white" opacity="0.04"/><circle cx="50" cy="50" r="1" fill="white" opacity="0.04"/></pattern></defs><rect width="60" height="60" fill="url(%23stats-pattern)"/></svg>');
    z-index: 1;
}

.statistics-content {
    position: relative;
    z-index: 2;
}

.statistics-header {
    margin-bottom: 2.5rem;
}

.statistics h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.statistics-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.3;
    font-weight: 500;
}

.stat-description {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0.5rem;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 968px) {
    .about {
        height: auto;
        min-height: 100vh;
        padding: 6rem 0 3rem 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-story, .statistics {
        padding: 2.5rem;
    }

    .story-title {
        font-size: 1.8rem;
    }

    .statistics h3 {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about .container {
        padding: 0 1rem;
    }

    .about-content {
        gap: 2rem;
    }

    .about-story, .statistics {
        padding: 2rem;
    }

    .story-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .story-title {
        font-size: 1.6rem;
    }

    .stat-item {
        padding: 1.5rem;
    }
}