/* Step 1 Styling */
.sec-step {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 20px auto;
}

.step-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
}

.step-description {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 20px;
}

.highlight {
    color: #FFA100;
}

/* Property Type Section */
.property-type {
    margin-bottom: 30px;
}

.property-type h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.property-type p {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 20px;
}

.property-option {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #ecf0f1;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.property-icon {
    margin-right: 20px;
}

.property-icon img {
    width: 30px;
    height: 30px;
}

.property-text h4 {
    font-size: 1.2rem;
    margin: 0;
    color: #16a085;
}

.property-text p {
    font-size: 0.9rem;
    color: #555;
}

input[type="radio"] {
    margin-left: 10px;
    width: 20px;
    height: 20px;
}

.next-button {
    text-align: center;
}

.next-button button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.next-button button:hover {
    background-color: #45a049;
}