/* General Styling */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.icon-boxes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.icon-boxes-section {
    background-color: skyblue;
    padding-bottom: 20px;
}

.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px; /* Set width for boxes */
    text-align: center;
    padding: 20px;
    border: 2px solid #007bff;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: transform 0.3s;
}

.icon-box:hover {
    transform: scale(1.05);
}

.icon-box h2 {
    margin-top: 10px;
}

.form-section {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.form-content {
    display: flex;
    width: 100%;
    max-width: 120%;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    background-color: aliceblue;
}

.form-left {
    flex: 1; /* Allow left section to take remaining space */
    padding-right: 20px; /* Space between left and right sections */
    margin-top: 100px;
}

.form-right {
    flex: 1; /* Allow right section to take remaining space */
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
}

form h1 {
    margin: 10px 0;
}

form p {
    margin: 5px 0;
}

form label {
    margin: 5px 0;
}

form input,
form select {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
}

form button:hover {
    background-color: #0056b3;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .form-section {
        flex-direction: column; /* Stack the sections on smaller screens */
        align-items: flex-start; /* Align items to the left */
    }

    .form-left {
        padding-right: 0; /* Remove right padding on smaller screens */
        margin-bottom: 20px; /* Space between sections */
    }

    .form-right {
        width: 100%; /* Ensure right section takes full width */
    }
}


/* Responsive Styles */
@media (max-width: 768px) {
    .icon-box {
        width: 100px; /* Adjust size for smaller screens */
    }

    .icon-box h2 {
        font-size: 16px; /* Font size for screens 400px or smaller */
    }
}
