/* General Styles */
body {
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(to right, #a83232, #a83232 50%, #a83232);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    padding: 15px 25px;
    border-radius: 8px;
    border: 2px solid #a83232;
    width: 100%;
    margin: 0 auto 15px auto;
    text-align: center;
    display: inline-block;
}

p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
}

.service-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 30px;
    border: 2px solid #a83232;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

label {
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: block;
}

input, textarea, .submit {
    width: 90%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    text-align: center;
	margin: 0 auto 10px auto;
}

.submit {
    background-color: #a83232;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    border: none;
    width: 90%;
    padding: 12px;
	margin: 10px auto 0 auto;
}

.submit:hover {
    background-color: #942c2c;
}

/* Custom Dropdown */
.custom-dropdown, .service-custom-dropdown {
    position: relative;
    margin-bottom: 10px;
    font-weight: 500;
}

.custom-dropdown-btn, .service-custom-dropdown-btn {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 94%;
    text-align: center;
    cursor: pointer;
    position: relative;
}

.custom-dropdown-content,.service-custom-dropdown-content{
    position: relative;
    width: 94%;
    background-color: white;
    border: 1px solid #ccc;
    z-index: 1;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: max-height 0.3s ease;
    margin: 0 auto;
	height: auto;
	max-height: 150px;
	overflow-y: auto;
}
.it-solutions-dropdown-content {
    position: relative;
    width: 100%;
    background-color: white;
    border: 1px solid #ccc;
    z-index: 1;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: max-height 0.3s ease;
    margin: 0 auto;
    height: auto;
    max-height: 150px;
    overflow-y: auto;
}

.custom-dropdown-content.active {
    display: block;
}

.custom-dropdown-content.active, .service-custom-dropdown.active{
    display: block;
}

.custom-dropdown-item {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid #a83232;
}

.custom-dropdown-item:hover {
    background-color: #f1f1f1;
}
.custom-dropdown-item.selected {
    background-color: #f9d7d7; /* Highlight selected items */
    color: #333;
}
.ok-button {
	position: relative;
    background-color: #a83232;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
	margin: 0 auto;
	width: 100%;
	
}
