body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: white
}

header {
    background-color: white; /* Primary company color */
}

header .logo {
    max-width: 50%;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.bg-primary {
    background-color: white !important;
}
.btn-custom {
    background-color: #d36834;
    position: inline-block;
    color: white;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-custom:hover {
    background-color: #060644;
    color: white;
}

footer {
    background-color: #060644; /* Secondary company color */
    color: white;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}
