/* General Styles */
body {
    font-family: Arial, sans-serif;
    padding-top: 0;
    margin: 0;
    background-color: #FAE8D3; /* Light background for better readability */
}

/* Mobile Adjustments */
@media (max-width: 576px) {
    .form-outline {
        margin-bottom: 20px;
    }
}


/* Logo Styles */
.logo {
    max-width: 100%;
    height: auto;
}

/* Footer */
.custom-footer {
    margin-top: 100px;
    background-color: #343a40; /* Dark footer background */
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

.custom-footer p {
    margin: 0;
}

/* Input and Select Styles */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
.form-outline {
    width: 100%;
    max-width: 100%;
    padding: 10px; /* Add padding for better touch-target size */
    border-radius: 8px;
}

/* Responsive Video */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Highlights */
.highlights .card {
    transition: transform 0.3s;
}

.highlights .card:hover {
    transform: scale(1.05);
}

/* Custom Button */
.btn-primary {
    background-color: #ff5733;
    border-color: #ff5733;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: #e74c3c;
}

/* Media Queries for Responsiveness */
@media (max-width: 767px) {
    .custom-footer {
        margin-top: 50px;
    }
    .text-marquee {
        font-size: 14px;
    }
}

@media (max-width: 576px) { /* Mobile devices */
    .highlights {
        margin-top: 450px; /* Margin on mobile devices */
    }
}

