/* Global Styles - Mobile First */
body {
    background-color: #f8f9fa;
    color: #212529;
    font-size: 16px;
    line-height: 1.5;
}

/* Card Styling */
.card {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
    background-color: white;
    margin-bottom: 1rem;
    padding: 1rem;
}

/* Form Controls - Optimized for touch */
.form-control {
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 1rem;
    font-size: 1rem;
    transition: all 0.2s ease-in-out;
    margin-bottom: 1rem;
    width: 100%;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1);
}

.form-control::placeholder {
    color: #6c757d;
}

/* Feature Items - Mobile optimization */
.feature-item {
    padding: 1.5rem;
    border-radius: 0.75rem;
    background-color: white;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    text-align: center;
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: #0d6efd;
    stroke-width: 1.5;
    margin-bottom: 1rem;
}

/* Typography - Mobile optimization */
.display-4 {
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.lead {
    color: #4a5568;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Buttons - Touch-friendly */
.btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    width: 100%;
    margin-bottom: 1rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #0d6efd, #0099ff);
    border: none;
    box-shadow: 0 4px 6px rgba(13, 110, 253, 0.1);
    transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(13, 110, 253, 0.2);
}

/* Navbar - Mobile optimization */
.navbar {
    padding: 1rem;
    background-color: white;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.25rem;
    color: #1a1a1a;
}

/* Utils */
.min-vh-75 {
    min-height: 75vh;
}

.img-fluid {
    max-height: 200px;
    object-fit: cover;
    width: 100%;
    border-radius: 0.75rem;
}

/* Container padding for mobile */
.container {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Media Queries - Tablet and up */
@media (min-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }

    .btn {
        width: auto;
    }

    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .feature-item {
        height: 100%;
        margin-bottom: 0;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .img-fluid {
        max-height: 300px;
    }
}

/* Media Queries - Desktop */
@media (min-width: 992px) {
    .display-4 {
        font-size: 3rem;
    }

    .container {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

/* Footer Styles */
.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 1.5rem 0;
    margin-top: auto;
}

.footer a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: #0d6efd;
    text-decoration: none;
}

.policy-content {
    line-height: 1.8;
    color: #333;
}

.policy-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #212529;
}

.policy-content p {
    margin-bottom: 1.5rem;
}

.policy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}