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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* --- Header --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background-color: #0c101d; 
    height: 80px; 
    width: 100%;
    position: relative;
    z-index: 1000;
}

.logo img { height: 32px !important; width: auto; display: block; object-fit: contain; }

.nav-links { display: flex; align-items: center; }
.nav-links button {
    margin-left: 15px; padding: 10px 20px; border-radius: 6px;
    cursor: pointer; font-size: 0.9rem; font-weight: 500;
}
.btn-outline { background: transparent; color: white; border: 1px solid rgba(255, 255, 255, 0.7); }
.btn-solid { background: white; color: #0c101d; border: none; }

.menu-toggle { display: none; color: white; font-size: 1.8rem; cursor: pointer; }

/* --- Hero & Search --- */
.hero {
    height: 480px;
    background: linear-gradient(105deg, #101424 0%, #4c1d95 65%, #7e22ce 100%);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; color: white; position: relative; padding: 0 20px;
}
.hero h1 { font-size: 3.8rem; font-weight: 600; margin-bottom: 10px; letter-spacing: -1px; }

.search-container {
    position: absolute; bottom: -32px; width: 90%; max-width: 850px;
    background: white; padding: 18px 25px; border-radius: 10px;
    display: flex; align-items: center; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1); 
}

/* SVG Search Icon Styling */
.search-icon-svg { width: 20px; height: 20px; color: #0c6cf2; margin-right: 15px; }

.search-container input { border: none; outline: none; width: 100%; font-size: 1.15rem; color: #333; }

/* --- MAIN CONTENT (White Background) --- */
.main-container {
    background-color: #ffffff; width: 100%;
    padding: 100px 5% 60px; display: flex; flex-direction: column; align-items: center;
}

.top-cards {
    display: flex; gap: 24px; width: 100%; max-width: 1100px; margin-bottom: 60px;
}

.product-card {
    flex: 1; background: #f4f8fe; /* Matches the light blue tint in your screenshot */
    padding: 30px; border-radius: 10px; border: 1px solid #e1e9f5;
}

.card-title { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }

/* SVG Product Icon Styling */
.card-icon-svg { width: 32px; height: 32px; }

.card-title h3 { color: #0c6cf2; font-size: 1.3rem; font-weight: 600; }
.product-card p { color: #0c6cf2; font-size: 1rem; opacity: 0.9; }

/* --- Articles Grid --- */
.section-header { width: 100%; max-width: 1100px; text-align: left; margin-bottom: 30px; }
.section-header h2 { font-size: 2.2rem; color: #121d33; font-weight: 700; }

.articles-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; width: 100%; max-width: 1100px;
}
.article-item { background: white; padding: 25px; border-radius: 12px; border: 1px solid #edf2f7; }
.article-item .label { font-size: 0.75rem; font-weight: 700; color: #0c6cf2; display: block; margin-bottom: 15px; }
.article-item h4 { color: #121d33; font-size: 1.1rem; margin-bottom: 12px; line-height: 1.4; }
.article-item p { color: #64748b; font-size: 0.95rem; }

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links {
        display: none; position: absolute; top: 80px; left: 0; width: 100%;
        background: #0c101d; flex-direction: column; padding: 25px; z-index: 100;
    }
    .nav-links.active { display: flex; }
    .nav-links button { width: 100%; margin: 10px 0; margin-left: 0; }
    .hero h1 { font-size: 2.5rem; }
    .top-cards { flex-direction: column; }
    .articles-grid { grid-template-columns: 1fr; }
}
