.step-container {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.step-container h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Email Section */
.email {
    margin: 20px auto;
    max-width: 600px;
}

.email-input {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid #ddd;
    border-radius: 30px;
    padding: 10px 20px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.email-input .icon {
    font-size: 20px;
    color: #44ccff;
}

.email-input input[type="email"] {
    border: none;
    outline: none;
    font-size: 16px;
    flex-grow: 1;
    padding: 8px;
}

.email-input .subscribe-btn {
    background-color: #44ccff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.email-input .subscribe-btn:hover {
    background-color: #33bbdd;
}

/* Steps Section */
/* Steps Section */
/* Steps Section */
.steps {
    margin: 30px auto;
    max-width: 600px;
}

.steps .cat-input {
    display: flex; /* Flexbox layout for single row */
    gap: 20px; /* Add space between items */
    justify-content: space-between; /* Even space between items */
    align-items: center; /* Vertically center items */
    flex-wrap: nowrap;
    margin-left: -80px;
    /* Prevent wrapping to the next line */
}

.steps .cat-input label {
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center; /* Align the radio button and text properly */
    gap: 10px;
    white-space: nowrap;
    /* margin-left: -70px; Prevent the text from wrapping */
}

.steps .cat-input input[type="radio"] {
    accent-color: #44ccff; /* Customize radio button color */
    cursor: pointer;
}

/* Tablet Screens (768px and smaller) */
@media (max-width: 768px) {
    .steps .cat-input {
        flex-wrap: wrap; /* Allow wrapping on smaller screens */
        justify-content: space-around; /* Center items with space */
    }

    .steps .cat-input label {
        font-size: 14px; /* Reduce font size for tablet screens */
        white-space: normal; /* Allow wrapping if text is long */
        width: 100%; /* Ensure labels take full width */
    }
}

/* Mobile Screens (576px and smaller) */
@media (max-width: 576px) {
    .steps .cat-input {
        flex-direction: column; /* Stack radio buttons vertically */
        justify-content: center;
        gap: 15px; /* Increase space between labels */
    }

    .steps .cat-input label {
        font-size: 14px; /* Smaller font size for mobile */
        width: 100%; /* Make labels take full width */
    }
}

/* Responsive Design */

/* Tablet Screens (768px and smaller) */
@media (max-width: 768px) {
    .step-container h1 {
        font-size: 2rem;
    }

    .email-input {
        flex-direction: column;
        gap: 15px;
    }

    .email-input input[type="email"],
    .email-input .subscribe-btn {
        width: 100%;
    }
}

/* Mobile Screens (576px and smaller) */
@media (max-width: 576px) {
    .step-container h1 {
        font-size: 1.8rem;
    }

    .email-input {
        padding: 15px;
    }

    .steps .cat-input label {
        font-size: 14px;
    }
}
