/* Custom Styles */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
    --light-bg: #f3f4f6;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    padding-top: 76px;
}

.hero-section {
    background: linear-gradient(to right, #ffffff 0%, #f3f4f6 100%);
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.card {
    border: none;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.modal-content {
    border-radius: 12px;
}

.form-control, .form-select {
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

/* Footer Styles */
footer {
    background-color: #1f2937;
}

footer h4, footer h5 {
    color: #fff;
    font-weight: 600;
}

footer .social-links a {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

footer .social-links a:hover {
    color: var(--primary-color) !important;
}

footer .list-unstyled li a {
    transition: color 0.3s ease;
}

footer .list-unstyled li a:hover {
    color: var(--primary-color) !important;
}

footer .newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

footer .newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-section img {
        margin-top: 2rem;
    }

    footer {
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
    
        footer .social-links {
            justify-content: center;
            margin-bottom: 2rem;
        }
}

