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

body {
    font-family: 'Open Sans', sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #fcfcfc;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: #1a1a2e;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Nav */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.5px;
}

.logo span {
    color: #e94560; /* Vibrant accent color */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #e94560;
}

/* Buttons */
.cta-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.text-btn {
    background-color: #1a1a2e;
    color: #ffffff;
}

.text-btn:hover {
    background-color: #e94560;
}

.primary-btn {
    background-color: #e94560;
    color: #ffffff;
}

.primary-btn:hover {
    background-color: #cf3d55;
}

.outline-btn {
    border: 2px solid #1a1a2e;
    color: #1a1a2e;
    margin-left: 15px;
}

.outline-btn:hover {
    background-color: #1a1a2e;
    color: #ffffff;
}

/* Hero Layout */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f4f6f9 0%, #ffffff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    color: #555555;
    margin-bottom: 35px;
}

.hero-placeholder .image-box {
    background-color: #e2e8f0;
    height: 350px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #718096;
    font-weight: 600;
    border: 2px dashed #cbd5e0;
}

/* Stats Layout */
.stats-section {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-card h2 {
    color: #e94560;
    font-size: 40px;
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 16px;
    color: #a0aec0;
}

/* Pillars Layout */
.pillars-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 60px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.pillar-card {
    padding: 40px 30px;
    background-color: #f8f9fa;
    border-top: 4px solid #1a1a2e;
    border-radius: 0 0 8px 8px;
    transition: transform 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    border-top-color: #e94560;
}

.pillar-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

/* Footer */
footer {
    background-color: #11111d;
    color: #718096;
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
}

/* Responsiveness */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-placeholder { order: -1; }
    .stats-grid { grid-template-columns: 1fr; gap: 40px; }
    .outline-btn { margin-left: 0; margin-top: 15px; display: block; }
    .primary-btn { display: block; }
}