/* Main Styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

.home-page {
    position: relative;
    min-height: 100vh;
    background-image: url('../images/bg.webp');
    background-size: cover;
    background-position: center;
    overflow-x: hidden;
}

/* Header Styles */
.head-wrap {
    height: 81px;
    display: flex;
    align-items: center;
    padding-left: 18.75%;
    background-color: white;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

.logo {
    width: 27px;
    height: 34px;
    border-radius: 4px;
}

.logo-text {
    font-weight: bold;
    font-size: 28px;
    margin-left: 16px;
    color: black;
}

/* Main Content Styles */
.main-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.content-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}

.text-content {
    padding-left: 18.75%;
    color: black;
}

.title-line {
    font-size: 36px;
    line-height: 1;
    font-weight: bold;
    margin-bottom: 22px;
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    margin-top: 76px;
}

.download-btn {
    width: 281px;
    height: 74px;
    margin-right: 36px;
    margin-bottom: 22px;
    border: 1px solid white;
    border-radius: 37px;
    background-color: #FF598A;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.download-btn img {
    height: 44px;
}

.ios-btn img {
    width: 38px;
}

.android-btn img {
    width: 40px;
}

.btn-text {
    margin-left: 17px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    color: white;
}

.small-text {
    font-size: 13px;
    font-weight: normal;
}

.large-text {
    font-size: 24px;
    margin-top: 4px;
}

.image-content {
    flex: 2;
    display: flex;
    justify-content: center;
}

.image-content img {
    width: 28vw;
    height: auto;
}

/* Footer Styles */
.footer-wrap {
    height: 77px;
    background-color: white;
    line-height: 77px;
    font-size: 12px;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-left: 8.75vw;
    padding-right: 8.75vw;
    display: flex;
    justify-content: center;
}

.footer-wrap span {
    color: black;
}

.links {
    margin-left: 5.98vw;
}

.links a {
    color: #8DC0FD;
    text-decoration: none;
}

.links a:first-child {
    margin-right: 1.45vw;
}