.homeEvalutation {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.homeEvalutation .text_field {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    margin-bottom: 15px;
    font-size: 16px;
}

.homeEvalutation .text_field::placeholder {
    color: #666;
}

/* Progress Steps */
.single-s {
    padding: 15px;
    text-align: center;
    border: 2px solid #dc3545;
    border-radius: 0;
    color: #dc3545;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
}

.single-s.active {
    background-color: #dc3545;
    color: white;
}

/* Next/Previous Buttons */
.next_btn, .pre_btn {
    background-color: #dc3545;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    float: right;
}

.next_btn:hover, .pre_btn:hover {
    background-color: #c82333;
}

/* Form Titles */
.homeEvalutation .main-title {
    text-align: center;
    margin-bottom: 2rem;
}

.homeEvalutation .main-title h1 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.homeEvalutation .main-title h2 {
    color: #dc3545;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: bold;
}

.homeEvalutation .address-subtitle {
    color: #333;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

/* Map Container */
#map {
    height: 300px;
    width: 100%;
    border-radius: 0;
    margin-bottom: 1rem;
}

/* Fieldset Styling */
.homeEvalutation fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

#second, #third {
    display: none;
}

/* Options Dropdown */
.homeEvalutation .options {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    margin-bottom: 15px;
    font-size: 16px;
    background-color: white;
}

/* Form Container */
.bg-form {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 0;
    padding: 2rem;
}

/* Main Title Styling */
.evaluation-box .section-title h2 {
    color: #dc3545;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.evaluation-box .section-title h6 {
    color: #000000;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .homeEvalutation {
        padding: 1rem;
    }
    
    .homeEvalutation h1 {
        font-size: 1.8rem;
    }
    
    .homeEvalutation h2 {
        font-size: 1.5rem;
    }
    
    .single-s {
        margin-bottom: 1rem;
    }
    
    .next_btn, .pre_btn {
        width: 100%;
        margin-bottom: 1rem;
        float: none;
    }
}

/* Main Title Styles */
.main-title {
    text-align: center;
    margin-bottom: 3rem;
}

.main-title h1 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.main-title h2 {
    color: #dc3545;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.main-title h3 {
    color: #333;
    font-size: 1.2rem;
    font-weight: normal;
} 