.container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1500px;
    /* margin: 20px auto; */
    background-color: #fff;
    /* border: 1px solid #ccc; */
}

.image-div {
    width: 700px;
}

.image-div img {
    width: 100%;
    height: auto;
}

.content-div {
    padding: 20px;
    width: 100%; /* Default width for small screens */
    max-width: 750px; /* Restrict max width */
    margin: 0 auto; /* Center align */
    /* text-align: center; Center-align content for better responsiveness */
}

.content-div h1 {
    font-weight: bold;
    font-size: 6vw; /* Use relative units for scaling */
    color: #44ccff;
    margin-top: 5%;
}

.content-div strong {
    font-size: 5vw; /* Scales with screen size */
}

.content-div h3 {
    font-size: 4vw; /* Scales with screen size */
    margin-bottom: 2%;
}

.content-div p {
    font-weight: bold;
    margin-bottom: 3%;
    /* font-size: 3vw; Use relative units for scaling */
}

/* Form Modal */

/* .container {
    width: 1500px;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
} */

/* Product Row */
.product-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px; /* Space between items */
}

.product-item:hover {
    transform: translateY(-5px);
}

/* Product Name */
.product-item h3 {
    font-size: 18px;
    color: #333;
    margin: 10px 0;
}

/* View All Button */
.view-all-btn {
    /* background-color: #44ccff; */
    color: #44ccff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
}

.view-all-btn:hover {
    /* background-color: #44ccff; */
}

/* Responsive Design */

/* Tablet Screens (768px and smaller) */
@media (max-width: 768px) {
    .product-item {
        width: 45%; /* 2 items per row */
    }
}

/* Mobile Screens (576px and smaller) */
@media (max-width: 576px) {
    .product-item {
        width: 100%; /* 1 item per row */
    }

    .view-all-btn {
        font-size: 14px;
        padding: 8px 15px;
    }
}

.kiwi h4 {
    color: #44ccff;
    font-weight: bold;
    margin-bottom: 1%;
}
.kiwi p {
    margin-bottom: 2%;
}

.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 */
    margin-left: -65px;
    flex-wrap: nowrap; /* 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; /* 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 */
    }
}

/* 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: 80%;
        margin-left: 20%; /* 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%;
    }

    .steps .cat-input label {
        font-size: 14px; /* Smaller font size for mobile */
        width: 80%;
        margin-left: 20%; /* Make labels take full width */
        display: flex;
        align-items: center; /* Align the radio button and text properly */
        gap: 10px;
        white-space: nowrap;
    }
}

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

    .email-input {
        padding: 15px;
    }
}

/* Base styling for the product container */
.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px; /* Add space between items */
    padding: 20px;
}

/* Styling for each product item */
.product-item {
    flex: 1 1 calc(25% - 20px); /* Each item takes up 25% width minus the gap */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    background: #fff;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

/* Hover effect for product items */
.product-item:hover {
    transform: translateY(-5px);
}

/* Image styling */
.product-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

/* Responsive styles for tablets */
@media (max-width: 1024px) {
    .product-item {
        flex: 1 1 calc(50% - 20px); /* Two items per row */
    }
}

/* Responsive styles for mobile */
@media (max-width: 768px) {
    .product-item {
        flex: 1 1 100%; /* One item per row */
    }
}
