/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #fff;
}

/* Container Styles */
.ccontainer {
    display: flex;
    flex-wrap: wrap;
    max-width: 1500px;
    padding: 20px;
    margin-bottom: 40px;
    width: 100%; /* Ensure container takes full width */
    box-sizing: border-box;
}

/* Image Section */
.iimage-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.iimage-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Content Section */
.ccontent-section {
    flex: 1;
    padding: 20px;
}

.ccontent-section h1 {
    font-size: 24px;
    font-weight: 700;
    color: #0c3572;
    margin-bottom: 10px;
}

.ccontent-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Feature Section */
.ffeature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.ffeature i {
    font-size: 24px;
    color: #0c3572;
    margin-right: 10px;
}

.ffeature div {
    max-width: 500px;
}

.ffeature h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 5px 0;
}

.ffeature p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Responsive Design */

/* For tablets and smaller devices (max-width: 1024px) */
@media (max-width: 1024px) {
    .ccontainer {
        flex-direction: column;
        align-items: center;
    }

    .iimage-section {
        padding: 15px;
    }

    .ccontent-section {
        padding: 15px;
    }

    .ccontent-section h1 {
        font-size: 22px;
    }

    .ccontent-section p {
        font-size: 14px;
    }

    .ffeature {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .ffeature i {
        margin-bottom: 10px;
    }

    .ffeature div {
        max-width: 100%; /* Allow feature section to stretch full width */
    }
}

/* For mobile devices (max-width: 768px) */
@media (max-width: 768px) {
    .ccontainer {
        flex-direction: column;
        align-items: center;
    }

    .iimage-section {
        padding: 15px;
    }

    .ccontent-section {
        padding: 15px;
        width: 100%; /* Ensure the content section takes full width */
    }

    .ccontent-section h1 {
        font-size: 20px;
    }

    .ccontent-section p {
        font-size: 14px;
    }

    .ffeature {
        flex-direction: column;
        margin-bottom: 15px;
    }

    .ffeature i {
        margin-bottom: 10px;
    }

    .ffeature div {
        max-width: 100%; /* Allow feature section to stretch full width */
    }
}

/* For very small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
    .ccontainer {
        padding: 10px; /* Adjust container padding for smaller screens */
    }

    .ccontent-section h1 {
        font-size: 18px; /* Reduce heading size */
    }

    .ccontent-section p {
        font-size: 12px; /* Adjust font size */
    }

    .ffeature {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 10px;
    }

    .ffeature i {
        font-size: 20px; /* Smaller icon size */
        margin-right: 5px; /* Reduce space between icon and text */
    }

    .ffeature div {
        max-width: 100%; /* Stretch feature section */
    }
}
