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

/* Remove default list styles */
ul,
li {
    list-style: none;
}

/* Global Typography Styles */
body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: rgb(255, 255, 255);
}

/* Global Link Styles */
a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.footerIcp .aLink {
    color: #333;
}

/* Global Button Styles */
/* button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
} */

img {
    width: 100%;
    height: 100%;
}

/* Global Box Model Styles */
.container {
    /* width: 1900px; */
    width: 100%;
    margin: 0 auto;
}