

body {
    font-family: 'Arial', sans-serif;
    text-align: right;
}

.navbar {
    background-color: #6c757d

    ; 
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 40px;
    margin-left: 10px; 
}

.navbar-nav {
    width: 100%;
    justify-content: center; 
}

.nav-link {
    text-align: center;
    padding: 10px 20px;
    color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
    background-color: #e60000; /* Red hover */
    color: white;
    border-radius: 5px;
}

.nav-link {
    display: inline-block;
    vertical-align: middle; 
}

.card {
    margin-top: 20px;
    border: none;
    border-radius: 0;
    color: white;
}

.jumbotron {
    background-color: #e9ecef; 
    padding: 40px;
    display: flex; 
    align-items: center; 
    margin-top: 20px; 
}

.jumbotron img {
    max-height: 150px; 
    margin-left: 20px; 
}

.jumbotron .content {
    text-align: right; /* Align text to the right */
    flex: 1; /* Allow the text to take remaining space */
}

.faq-section {
    margin-top: 40px;
    padding: 20px;
    background-color: #e9ecef; /* Light grey background */
    border-radius: 5px;
}

.container {
    margin-top: 40px;
}

.card {
    background-color: #f8f9fa; /* Softer light grey */
    border: 2px solid #e60000;
    border-radius: 10px;
    max-width: 800px;
    width: 100%;
    margin: 20px auto;
    color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Less intense shadow */
}

.card-title {
    color: #e60000;
    font-weight: bold;
}

h2 {
    margin-bottom: 20px;
}

.map {
    height: 300px; 
}

.address,
.phone {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.address i,
.phone i {
    margin-left: 10px; 
    color: #6c757d; 
    font-size: 1.5rem; 
}

.contact-section {
    margin-top: 20px; 
    padding: 20px; 
    background-color: #e9ecef; 
    border-radius: 5px; 
}

.form-label {
    font-weight: bold;
    color: #333;
}

.form-control {
    background-color: #fff; 
    border: 1px solid #ced4da; 
    border-radius: 5px;
    padding: 10px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    border-color: #e60000;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(230, 0, 0, 0.25); 
}

.form-control::placeholder {
    color: #6c757d; 
}

.btn-submit {
    background-color: #e60000;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    color: #fff;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #b30000;
    transform: scale(1.02); 
}
#fin {
display: flex;
justify-content: center;
align-items: center;
margin: 40px 0; 
}

iframe {
    border: none; 
}

@media (max-width: 768px) {
    /* Adjust logo size */
    .navbar-brand img, 
    .jumbotron img {
        max-height: 80px; /* Reduce logo height for mobile */
        width: auto; /* Maintain aspect ratio */
    }

    /* Reduce text size */
    h1.display-4 {
        font-size: 1.8rem; /* Smaller header text */
    }

    .jumbotron .lead {
        font-size: 1rem; /* Smaller subheading text */
    }

    .nav-link {
        font-size: 0.9rem; /* Smaller navigation text */
    }

    .accordion-button {
        font-size: 0.95rem; /* Smaller accordion button text */
    }

    .accordion-body {
        font-size: 0.85rem; /* Smaller accordion content text */
    }

    .contact-section h2,
    .faq-section h2 {
        font-size: 1.5rem; /* Smaller section headings */
    }
}
