/* Custom CSS untuk Desain Modern dan Informatif */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Playfair+Display:wght@700&display=swap');

/* Basic Reset & Global Styles */
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #f8f8f8; /* Light background */
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 25px;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #004085; /* Dark blue for headings */
    margin-top: 0;
    margin-bottom: 20px;
}

h1 {
    font-size: 4em;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

h2 {
    font-size: 2.8em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
    color: #0056b3;
}
h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #007bff; /* Primary blue accent */
    border-radius: 5px;
}

h3 {
    font-size: 1.9em;
    font-weight: 600;
    color: #0056b3;
    margin-bottom: 15px;
}

p {
    margin-bottom: 1em;
    font-size: 1.1em;
    line-height: 1.8;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-size: 1.05em;
}

ul li::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    font-size: 1.2em;
    top: 0;
}

strong {
    color: #004085;
}

/* Header Section */
.site-header {
    background: linear-gradient(160deg, #0056b3 0%, #007bff 100%); /* Blue gradient */
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.header-main-title {
    margin-bottom: 10px;
}

.header-sub-title {
    font-size: 1.8em;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
}

.header-image-container {
    margin-top: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
    overflow: hidden;
    border: 7px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.main-illustration {
    width: 100%;
    height: auto;
    display: block;
}

/* Content Sections */
.content-section {
    padding: 90px 0;
    border-bottom: 1px solid #eee;
}

.content-section:last-of-type {
    border-bottom: none;
}

.bg-light-grey {
    background-color: #f0f0f0; /* Slightly darker grey */
}

.section-tagline {
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 50px;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Icon Grid for Challenges/Solutions */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.grid-item {
    background-color: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border-bottom: 5px solid #ffc107; /* Yellow accent */
}

.grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.grid-item i {
    font-size: 3.2em; /* Icon size */
    color: #ffc107;
    margin-bottom: 15px;
    display: block;
}

.grid-item h3 {
    font-size: 1.7em;
    color: #e0a800; /* Darker yellow for title */
}

/* Icon Placeholders (using Unicode or simple shapes) */
.icon-phishing::before { content: '🎣'; } /* Fishing/Phishing icon */
.icon-hoax::before { content: '🤥'; } /* Lying face/Hoax icon */
.icon-data-breach::before { content: '🔒'; } /* Lock/Security icon */


/* Flexible Row Layout (Text & Image) */
.flex-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.flex-row.reverse-flex {
    flex-direction: row-reverse;
}

.flex-text {
    flex: 2;
    min-width: 320px;
}

.flex-image {
    flex: 1;
    min-width: 280px;
}

.section-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto;
}

/* Partnership Grid */
.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partner-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.07);
    transition: transform 0.2s ease;
    text-align: center;
    border-top: 4px solid #28a745; /* Green accent */
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.partner-card h3 {
    font-size: 1.6em;
    color: #28a745;
    margin-bottom: 10px;
}

/* Footer */
.site-footer {
    background-color: #1a2c3c; /* Very dark blue-grey */
    color: white;
    padding: 50px 20px;
    text-align: center;
    font-size: 0.95em;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    box-shadow: 0 -8px 25px rgba(0,0,0,0.2);
}

.footer-nav {
    margin-top: 30px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    margin: 0 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #007bff;
}

/* Animations */
/* Fade-in for Header elements */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards ease-out;
}

.fade-in-up.delay-1 { animation-delay: 0.2s; }
.fade-in-up.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll-triggered animations for content sections */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 3.2em;
    }
    h2 {
        font-size: 2.3em;
    }
    .site-header {
        padding: 100px 20px 70px;
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
    }
    .content-section {
        padding: 70px 0;
    }
    .flex-row {
        flex-direction: column;
        gap: 40px;
    }
    .flex-row.reverse-flex {
        flex-direction: column;
    }
    .flex-image {
        order: -1; /* Image appears first on mobile */
    }
    .icon-grid,
    .partnership-grid {
        grid-template-columns: 1fr; /* Single column on smaller screens */
    }
    .site-footer {
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
    }
    .footer-nav a {
        display: block;
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }
    h2 {
        font-size: 1.9em;
    }
    h3 {
        font-size: 1.6em;
    }
    .header-sub-title {
        font-size: 1.5em;
    }
    .header-image-container {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }
    .header-sub-title {
        font-size: 1.2em;
    }
    .container {
        padding: 0 15px;
    }
    .header-image-container {
        max-width: 300px;
    }
}