/* css/custom.css */
:root {
    --bs-primary: #4a90e2;
    --bs-secondary: #f39c12;
    --bs-dark: #2c3e50;
    --bs-light: #ecf0f1;
}

body {
    font-family: 'Inter', sans-serif;
}

.navbar-brand {
    font-weight: 700;
    color: var(--bs-primary) !important;
}

.hero {
    background-color: var(--bs-primary);
    color: white;
    padding: 6rem 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
}

.feature-card {
    height: 100%;
    transition: transform 0.3s ease;
}

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

.cta-section {
    background-color: var(--bs-dark);
    color: white;
    padding: 6rem 0;
}

footer {
    background-color: var(--bs-dark);
    color: white;
    padding: 3rem 0;
}

footer h5 {
    color: var(--bs-secondary);
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    color: var(--bs-secondary);
}

.faq-item {
    border-bottom: 1px solid var(--bs-light);
    padding: 1.5rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.privacy-policy h2 {
    color: var(--bs-primary);
    margin-top: 2rem;
}