
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container-main {
    padding-top: 2rem;
    padding-bottom: 3rem;
    min-height: 65vh;
}


h1 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h2 { font-size: 2rem; margin-bottom: 1.25rem; }
h3 { font-size: 1.75rem; margin-bottom: 1rem; }


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

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

.card-header {
    background-color: #8B0000;
    color: white;
    font-weight: 600;
    border-radius: 0.5rem 0.5rem 0 0 !important;
}
.card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.card-body {
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    /*text-align: center;*/
}

.btn {
    border-radius: 0.5rem;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #8B0000;
    border-color: #8B0000;
}

.btn-primary:hover {
    background-color: #6d0000;
    border-color: #6d0000;
}
