/* Custom Fonts */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa; /* Light background for the page */
}

/* Custom Colors */
:root {
    --bs-primary: #0A7AFF; /* Election Pro primary blue */
    --bs-dark-blue: #0A1C30; /* Dark background for hero/navbar/footer */
    --bs-light-green: #28a745; /* For checkmarks */
    --bs-info: #17a2b8; /* For "Who is it for?" icons */
}

.bg-dark-blue {
    background-color: var(--bs-dark-blue) !important;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.text-light-green {
    color: var(--bs-light-green) !important;
}

.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}
.btn-primary:hover {
    background-color: #0862d2; /* Slightly darker blue */
    border-color: #0862d2;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}
.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}


/* Navbar Enhancements */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
    min-height: 85vh; /* Adjust as needed */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden; /* Hide overflow for background image */
}

/* General Section Styling */
section {
    padding: 60px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Icon Box / Feature Block / Benefit Box styling */
.icon-box, .feature-block, .benefit-box, .security-item, .pricing-feature, .process-step div {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.icon-box:hover, .feature-block:hover, .benefit-box:hover, .security-item:hover, .pricing-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
}

/* Custom list styling for features */
.list-unstyled.space-y-2 li {
    margin-bottom: 0.5rem;
}
.list-unstyled.space-y-2 li:last-child {
    margin-bottom: 0;
}

/* How It Works steps */
.process-step {
    padding: 20px;
    background-color: #fff; /* Ensure white background for each step */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    height: 100%; /* Make sure they fill height if content differs */
}

/* Footer Social Icons */
footer .bi {
    font-size: 1.2rem;
}
footer a:hover {
    color: var(--bs-primary) !important;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto; /* Allow hero to shrink on smaller screens */
        padding-top: 100px; /* Add padding for navbar */
        padding-bottom: 50px;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p.lead {
        font-size: 1.15rem;
    }
    .display-5 {
        font-size: 2.2rem;
    }
}
@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section p.lead {
        font-size: 1rem;
    }
    .display-5 {
        font-size: 1.8rem;
    }
    .navbar-brand {
        font-size: 1.2rem;
    }
}