@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Roboto:wght@400;700&display=swap');

:root {
    --navy: #0A1F3D;
    --red: #9C2A2A;
    --cream: #F5F0E6;
    --dark-blue: #1E2A44;
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(to bottom, #0A1F3D, #1E2A44);
    min-height: 100vh;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(10, 31, 61, 0.75), rgba(10, 31, 61, 0.75)), 
                url('https://images.pexels.com/photos/31317370/pexels-photo-31317370.jpeg') center/cover;
    color: white;
    text-align: center;
    padding: 80px 20px 60px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, #0A1F3D);
}

.header-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #fff;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.7);
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.8rem;
    letter-spacing: 6px;
    margin-bottom: 15px;
    color: #f0c040;
}

.district {
    background: var(--red);
    color: white;
    padding: 8px 40px;
    font-size: 1.5rem;
    font-weight: bold;
    display: inline-block;
    border-radius: 4px;
    margin: 20px 0;
}

.platform {
    background: white;
    color: var(--navy);
    padding: 12px 50px;
    font-size: 1.3rem;
    font-weight: bold;
    display: inline-block;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.platform-container {
    margin: 30px 0;
}

/* Cards */
.main-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
}

.card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card-red { background: var(--red); color: white; }
.card-cream { background: var(--cream); color: #1E2A44; }
.card-blue { background: var(--dark-blue); color: white; }

.card-header {
    text-align: center;
    padding: 30px 20px 20px;
}

.icon-circle {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.icon-circle i {
    font-size: 4rem;
    color: var(--navy);
}

.card-red .icon-circle i,
.card-blue .icon-circle i {
    color: var(--red);
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.card-content {
    padding: 0 30px 40px;
    text-align: center;
}

.card-content p {
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.check-icon {
    font-size: 2.5rem;
    margin: 15px 0;
}

.lightbulb i {
    font-size: 3rem;
    color: #9C2A2A;
}

/* Slogan */
.slogan {
    background: var(--red);
    color: white;
    text-align: center;
    padding: 30px 20px;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 30px auto;
    max-width: 1100px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(156, 42, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.slogan i {
    font-size: 2.8rem;
}

/* Footer */
.footer-bar {
    background: linear-gradient(to right, #0A1F3D, #1E2A44);
    color: white;
    padding: 25px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 20px 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.footer-links span {
    color: #f0c040;
}

.paid-for {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 15px;
}

.mountains {
    height: 180px;
    background: linear-gradient(transparent, #0A1F3D), 
                url('https://picsum.photos/id/1016/1920/400') bottom/cover;
    position: relative;
}

.shield-check {
    text-align: center;
    margin: 20px 0 10px;
}

.shield-check svg {
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.accountability-icon {
    text-align: center;
    margin: 20px 0 10px;
}

.accountability-icon svg {
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

/* Responsive */
@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
    }
    .title {
        font-size: 3rem;
    }
}