/* General Reset */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f9;
}

/* Welcome Section */
.welcome-section {
    text-align: center; /* Center all items in the section */
    padding: 20px 20px;
    position: relative;
}

.welcome-section .logo img {
    max-width: 100%;
    height: auto;
    max-height: 200px; /* Set appropriate logo height */
    display: block;
    margin: 0 auto 5px auto; /* Center the logo and add spacing */
}

.welcome-section .login-btn {
    background-color: #B5121B;
    color: white;
    border: none;
    padding: 10px 15px;
    text-decoration: none; /* Remove underline */
    display: inline-block;
    border-radius: 5px;
    font-size: 14px;
    position: absolute;
    top: 20px;
    right: 20px; /* Position on the top-right */
}

.welcome-section .login-btn:hover {
    background-color: #920E16;
}

.welcome-section .learn-more-btn {
    background-color: #B5121B;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none; /* Remove underline */
    display: inline-block;
    margin-bottom: 40px; /* Add spacing below the button */
}

.welcome-section .learn-more-btn:hover {
    background-color: #920E16; /* Slightly darker shade for hover effect */
}

/* Contact Form Section */
.contact-form-section {
    padding: 30px 20px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact-form-section h2 {
    text-align: center;
    color: #B5121B;
    margin-bottom: 20px;
}

#contact-form {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#contact-form label {
    font-weight: bold;
}

#contact-form input {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#contact-form button {
    background-color: #B5121B;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

#contact-form button:hover {
    background-color: #920E16;
}

/* Brands Section */
.brands-section {
    padding: 30px 20px;
    background-color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.brands-section h2 {
    color: #B5121B;
    margin-bottom: 20px;
}

.brands-section .brand-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 500px;
    width: 100%;
}

.brands-section .brand-logos a img {
    width: auto;
    height: 80px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.brands-section .brand-logos a img:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    padding: 10px 20px;
    text-align: center;
    background-color: #1F1B36; /* Darker background for better readability */
    color: #f4f4f9;
    font-size: 14px;
    line-height: 1.4;
}

footer a {
    color: #FFC107; /* Highlighted yellow for links */
    text-decoration: none;
}

footer a:hover {
    color: #E0A800; /* Slightly darker yellow on hover */
}
