body {
    background: #f5f5f7;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    height: 100%;
}

.app-container {
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: #f9f9f9;
    align-items: center;
    
}

.app-content {
    display: flex;
    max-width: 1000px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 0px 8px 0px #e0e0e0; /* Adjust shadow size */
}

.app-image {
    width: 30%; /* Adjust as needed */
    object-fit: cover;
}

.app-description {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app-description h2 {
    font-size: 2.5rem;
    margin: 0 0 10px;
    color: black;
}

.app-description p {
    font-size: 1.6rem;
    color: black;
    line-height: 1.6;
    margin-bottom: 20px;
}

.col-md-12 col-sm-12 .h2 {
    color: #ffa500;
    font-family: 'Playfair Display', serif; /* Changed to Playfair Display */
    justify-content: center;
}

.app-image1 {
    width: 30%; /* Adjust the image width as needed */
    height: auto;
    border-radius: 10px;
    margin-left: auto; /* Pushes the image to the far right */
}

.app-content1 {
    display: flex;
    width: 1000px;
    background-color: #ffb732;
    box-shadow: 0px 0px 8px 0px #e0e0e0; /* Adjust shadow size */
    border-radius: 8px;
}

/* Existing styling above this line */

@media (max-width: 768px) {
    .app-content, .app-content1 {
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center elements for consistency */
        width: 100%; /* Full width on small screens */
    }

    .app-image, .app-image1 {
        width: 100%; /* Full width for images */
        border-radius: 8px 8px 0 0; /* Rounded top corners */
    }

    .app-description {
        padding: 20px; /* Reduce padding for smaller screens */
        text-align: center; /* Center-align text for better mobile presentation */
    }

    .app-description h2 {
        font-size: 1.5rem; /* Adjust heading size for smaller screens */
        margin-top: 20px; /* Add space between image and text */
    }

    .app-description p {
        font-size: 1rem; /* Adjust text size for readability */
    }

    .dropdown-filters {
        flex-direction: column; /* Stack dropdowns on small screens */
        align-items: center;
    }
}

/* Dropdown section styles */
.dropdown-filters {
    display: flex;
    gap: 20px; /* Space between dropdowns */
    align-items: center; /* Vertical alignment */
    margin-bottom: 20px; /* Add spacing below the dropdowns */
}

.dropdown-container {
    position: relative;
    display: inline-block;
    width: 200px; /* Adjust width as needed */
}

.dropdown-container label {
    margin-bottom: 5px;
    font-weight: bold;
}

.dropdown-container select {
    appearance: none; /* Remove default arrow */
    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Chrome/Safari */
    width: 100%;
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
}

/* Style for the entire dropdown section */
section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.dropdown-container::after {
    content: '\25BC'; /* Unicode for down arrow */
    position: absolute;
    top: 50%;
    right: 10px; /* Adjust position as needed */
    transform: translateY(-50%);
    pointer-events: none; /* Prevent interaction */
    font-size: 16px;
    color: #333; /* Adjust arrow color */
}
.filter-section {
    display: flex;
    flex-wrap: wrap; /* Wrap filters on smaller screens */
    gap: 20px; /* Space between filters */
}

.filter-section label {
    margin-right: 10px; /* Space between the label and the dropdown */
    display: flex;
    align-items: center; /* Align label text vertically with the dropdown */
}

.dropdown-container {
    margin-bottom: 10px; /* Space below each filter container */
}

.dropdown-container select {
    padding: 5px; /* Add padding for a better look */
    font-size: 14px; /* Improve font size for readability */
}
