:root {
    --primary-blue: #316fbc;
    --accent-red: #dc3545;
    --light-gray: #f8fafc;
    --dark-gray: #334155;
}

body{
    font-family: "Roboto";
}

h1{
    font-family: "Robot-300";
}

.btn-primary { 
    background-color: #316fbc!important;
}

#navigation{
    color:#316fbc!important;
}

#footer{
    background-color: #316fbc;
    color: white;
}

#contact-form-section{
    font-family: "Roboto-300";
    border-color: #316fbc!important;
}

.contact-form .btn {
    border-radius: 2.5rem;
}

#contact-info{
    background-color: #316fbc;
    color: white;
    font-family: "Roboto-300";
    justify-content: flex-end;
}

#contact-info-registration{
    background-color: #316fbc;
    color: white;
    font-family: "Roboto-300";
    font-size: larger;
    font-weight: bold;
    justify-content: flex-end;
}

#contact-info-logos{
    background-color: #316fbc;
    color: white;
    font-family: "Roboto-300";
}

#faa_logo{
    max-height: 140px;
    max-width: 180px;
}

#about-us{
    background-image: url(/assets/img/aviation-background.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

#about-us a{
    text-decoration: none;
}

#about-card{
    border-color: #316fbc!important;
    border-radius: 1.25rem!important;
    background-color: rgba(1, 1, 1, 0.4)!important;
    max-width: 800px;
}

#wbe_seal{
    max-height: 120px;
    max-width: 200px;
}

.service-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-red), #e55d6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.service-title {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
    color: var(--dark-gray);
}

.service-list li:before {
    content: "✈";
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
}
.section-title {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-blue);
    font-family: "Roboto-300";
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-red);
}