/* Global */
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #222;
    background: #fafafa;
    line-height: 1.6;
}

/* Header */
header {
    padding: 24px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

/* Hero */
.hero {
    text-align: center;
    padding: 120px 20px 100px;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 22px;
    color: #555;
    margin-bottom: 40px;
}

/* CTA Buttons */
.cta-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta {
    padding: 14px 28px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}

.cta.secondary {
    background: #e5e5e5;
    color: #000;
}

/* Pillars */
.pillars {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.pillar {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.pillar h2 {
    margin-top: 0;
    font-size: 22px;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 40px;
    color: #555;
}
