/* =========================
   Landing Page Styling
   ========================= */

/* General */
body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #333;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero h1.display-5 {
    font-weight: 700;
    color: #0d6efd; /* Bootstrap primary */
}

.hero p.lead {
    font-size: 1.2rem;
    color: #555;
}

/* Buttons */
.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.05rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease-in-out;
}

.btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Features Section */
.features .feature-card {
    border-radius: 0.75rem;
    background-color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.features .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.features .feature-icon {
    font-size: 2rem;
}

.features h4 {
    color: #198754; /* Bootstrap success */
    margin-bottom: 0.5rem;
}

.features p {
    font-size: 0.95rem;
    color: #666;
}

/* CTA Section */
.cta {
    background: #f1f9ff;
    padding: 3rem 1rem;
    border-radius: 0.75rem;
}

.cta h2 {
    color: #0d6efd;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    font-size: 0.85rem;
    color: #777;
    background-color: #f8f9fa;
}