html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin-bottom: 60px;
}

.btn-primary {
    background-color: #4361ee;
    border-color: #4361ee;
}

    .btn-primary:hover {
        background-color: #3a56d4;
        border-color: #3a56d4;
    }

.btn-outline-primary {
    color: #4361ee;
    border-color: #4361ee;
}

    .btn-outline-primary:hover {
        background-color: #4361ee;
        border-color: #4361ee;
    }

.text-primary {
    color: #4361ee !important;
}

.bg-primary {
    background-color: #4361ee !important;
}

.hero-section {
    background: linear-gradient(135deg, #4361ee 0%, #7209b7 100%);
    color: white;
    padding: 5rem 0;
}

.feature-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0.5rem;
    height: 100%;
}

    .feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}
