body{
    margin: 0;
    padding:0;
    font-family: 'Poppins', sans-serif;
}

body.home {
    background: linear-gradient(135deg, #121212, #313131);
    background-attachment: fixed;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
.page-heading{
    position: relative;
    width:100%;
    padding:50px;
    background: linear-gradient(135deg, #b08941, #f2cb4f);
    color:#FFF;
}

a{
    text-decoration: none;
}
.coming-soon {
    text-align: center;
    padding: 20px;
    max-width: 90%;
}
.page-wrapper {
    text-align: center;
    padding:0;
}
.coming-soon h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}
.coming-soon p {
    font-size: 1rem;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}
.app-icons img {
    height: 40px;
    margin: 10px;
    transition: transform 0.3s ease;
}
.app-icons img:hover {
    transform: scale(1.1);
}
img {
    max-width: 100%;
}
.logo {
    margin-bottom: 50px;
    width: 250px;
}
.inner-logo {
    margin-top: 30px;
    margin-bottom:20px;
    width: 250px;
}
.footer {
    margin-top: 20px;
    font-size: 0.9rem;
    text-align: center;
    color: #ffffff;
}
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.footer li {
    margin: 0 10px;
}
.footer a {
    color: #ffffff;
    /*text-decoration: underline;*/
}
.footer a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.footer .links a{
    color: #ffffff;
}
.footer .links a:hover{
    color: #FFFFFF;
    text-decoration: underline;
}
.emailLink{
    color: #FFFFFF;
}
.emailLink:hover{
    color: #FFFFFF;
    text-decoration: underline;
}
.page-section{
    padding-top:60px;
    padding-bottom:60px;
}
.page-footer {
    font-size: 0.9rem;
    text-align: center;
    color: #000;
    background: linear-gradient(135deg, #b08941, #f2cb4f);
    padding:50px 0 20px 0;
}
.page-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.page-footer li {
    margin: 0 10px;
}
.page-footer a {
    color: #000;
    /*text-decoration: underline;*/
}
.page-footer a:hover {
    color: #000;
    text-decoration: underline;
}

.page-footer .links a{
    color: #000;
}
.page-footer .links a:hover{
    color: #000;
    text-decoration: underline;
}
@media (max-width: 768px) {
    .footer ul {
        flex-direction: column;
        align-items: center;
    }
    .footer li {
        margin: 5px 0;
    }
    .page-footer ul {
        flex-direction: column;
        align-items: center;
    }
    .page-footer li {
        margin: 5px 0;
    }
}
@media (min-width: 768px) {
    .coming-soon {
        max-width: 100%;
        padding: 40px;
    }
    .coming-soon h1 {
        font-size: 3rem;
    }
    .coming-soon p {
        font-size: 1.2rem;
    }
    .app-icons img {
        height: 50px;
    }
}