* {
    box-sizing: border-box;
    object-fit: contain;
    font-family: 'Open Sans', sans-serif;
 }
 
 /* Scrollbar styling */
 ::-webkit-scrollbar {
    width: 5px;
    height: 9px;
    background: #4285F4;
 }
 
 ::-webkit-scrollbar-thumb {
    background: #4285F4;
    border-radius: 5px;
 }
 
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: auto;
    color: #fff;
    background: #000;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
    text-align: center;
    color: #fff;
}

h2 {
    color: #fff;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

p {
    margin-bottom: 10px;
    color: #fff;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

ul li {
    margin-bottom: 10px;
}

.contact-info {
    margin-top: 20px;
}
.fa-arrow-right{
    color: #fff;
    position: relative;
    left: 50%;
}