* {
    margin: 0;
    padding: 0; 
}
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #fff;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100; /
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo img {
    width: 120px;
}

.btn-container {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 7px 20px;
    background-color: #23346a;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:first-child {
    background-color: #fff;
    border: 2px solid #23346a;
    color:#23346a;
}

.btn:first-child:hover {
    background-color: #23346a;
    color: #fff;
}

.btn:hover {
    background-color: #fff;
    color: #23346a;
    border: 2px solid #23346a;
}

/* Image Section Styles */
.image-section {
    height: 100vh;
    background: url(images/MicrosoftTeams-image\ \(3\).png) center/cover no-repeat;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.overlay-text h1 {
    font-size: 52px;
    text-align: center;
    margin-bottom: 15px;
    max-width: 500px;
}

.overlay-text p {
    font-size: 30px;
    text-align: center;
    margin-bottom: 15px;
}

.get-started-btn {
    padding: 12px 30px;
    background-color: #cc9933;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.get-started-btn:hover {
    background-color: #fff;
    color: #23346a;
    border: 1px solid #23346a;
    font-weight: 600;
}

.onboarding-req {
    padding: 20px;
}

.onboarding-req h2 {
    text-align: center;
    margin: 50px 0;
}

.req-list {
    border: 1px solid #eaecf0;
    border-radius: 10px;
}

.req-list-container {
    padding: 20px;
}

.req-list-header {
    background-color: #23346a;
    padding: 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: #fff;
}

.req-list-items {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 30px;
}

.req-list-items i {
    color: #cc9933;
    font-size: 26px;
}

.req-list-items p {
    font-size: 16px;
    color: #667085;
}

footer {
    margin: 40px 40px 0px 40px;
    padding: 40px 0 0 0;
    border-top: 1px solid #cc9933;
}

.footer-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-contact {
    text-align: right;
}

.footer-contact h4, span {
    color: #101828;
    font-weight: 600;
}

footer p {
    margin: 10px 0;
    color: #667085;
}

.email {
    color: #101828;
    /* font-weight: 600; */
}