/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
}

/* Section Styles */
.about-us {
    padding: 40px 20px; /* Added padding for mobile devices */
    background-color: #fff;
}

.container {
    display: flex;
    flex-direction: column; /* Stack items vertically on small screens */
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.text-content {
    width: 100%; /* Full width on small screens */
    margin-bottom: 20px; /* Spacing between sections on small screens */
}

.text-content h1 {
    font-size: 28px; /* Adjusted font size for better readability */
    color: #333;
    margin-bottom: 20px;
}

.text-content p {
    font-size: 16px; /* Adjusted font size for better readability */
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.image-content {
    width: 100%; /* Full width on small screens */
    text-align: center;
}

.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Icon Section */
.icons {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allow icons to wrap on small screens */
    margin-top: 40px;
}

.icon {
    text-align: center;
    width: 45%; /* Adjusted width for better spacing on small screens */
    margin-bottom: 20px; /* Spacing between icons on small screens */
}

.icon i {
    font-size: 36px; /* Adjusted icon size for better readability */
    color: #333;
    margin-bottom: 10px;
}

.icon p {
    font-size: 16px; /* Adjusted font size for better readability */
    color: #333;
}

/* Responsive Design */
@media (min-width: 768px) {
    .container {
        flex-direction: row; /* Side by side on larger screens */
    }

    .text-content {
        width: 50%; /* Adjust width for larger screens */
    }

    .image-content {
        width: 45%; /* Adjust width for larger screens */
    }

    .icons {
        justify-content: space-around; /* Better spacing on larger screens */
    }

    .icon {
        width: 22%; /* Adjust width for larger screens */
    }
}