/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #cce7ff, #dfeefc, #ffffff, #ffffff);

}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    background-color: #000000;
    border: 2px solid #555555;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}

/* Header styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}


.logo img {
    height: 40px;
}

.policy-safe img {
    height: 40px;
}


/* Main content styles */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 0; /* Remove unnecessary padding */
    margin-bottom: 0; /* Remove any margin */
    background-image: url('../img/phone.svg');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 100%;
}

.tagline {
    font-size: 0.95rem;
    color: #01AE06;
    margin-bottom: 20px;
    top: 327px;
    position: relative;
    right: 119px;
    z-index: 2;
}

.coming-soon {
    font-size: 2rem;
    font-weight: bold;
    color: #124896;
    margin-bottom: 40px;
    text-shadow: 4px 4px 0px #69a8f0;
    top: 300px;
    position: relative;
    right: 117px;
    z-index: 1;
}

.phone-image {
    max-width: 100%;
    width: 75%;
    top: 144px;
    position: relative;
    opacity: 0.3;
    right: 58px;
}

.groupimg{
    max-width: 100%;
    width: 81%;
    
}

/* Footer styling */
.footer {
    position: relative;
    width: 100%;
    font-size: 0.7rem;
    color: #333;
    text-align: center;
    padding: 0 10px;
    bottom: 10px;
    box-sizing: border-box;
    line-height: 18px;
}

.footer strong {
    color: #133158;
}

.footer1 {
    position: relative;
    width: 100%;
    font-size: 0.5rem;
    color: #133158;
    text-align: center;
    left: 9px;
    top: 6px;
    font-weight: bold;
}

.footer-container {
    margin-top: auto;
    padding-top: 0;
}


/* Phone mockup styles */
.phone-container {
    width: 100%;
    max-width: 325px;
    margin: 0 auto;
    bottom: 600px;
    position: relative;
}


.app-text {
    font-size: 2.5rem;
    font-weight: bold;
    color: #d1d5db;
}

.app-text small {
    font-size: 0.875rem;
    margin-left: 0.25rem;
}

/* Footer styles */
.footer-container {
    background: linear-gradient(to bottom, #ffffff 20%, #ffffff 60%, #f8f9fa 100%);
    padding: 20px;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.7rem;
    color: #333;
    line-height: 1.6;
}

.footer-content strong {
    color: #133158;
    margin-right: 10px;
}

.license-info p,
.company-desc,
.address p,
.company-info p {
    margin-bottom: 10px;
}

.copyright {
    font-size: 0.5rem;
    color: #133158;
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
}


