* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #ffffff;
}

.container-main {
    max-width: 1200px;
    margin: auto;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
}

h1 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #000;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    min-width: 260px;
    justify-content: center;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-4px);
}

.android {
    background: #000000;
}

.ios {
    background: #000000;
}

.pc {
    background: #000000;
}

.login {
    background: #000000;
}

.icon {
    font-size: 22px;
}

.login-btn {
    margin-top: 10px;
    width: 30%;
    display: flex;
    margin: auto;
    text-align: center;
    justify-content: center;
}

@media (max-width: 768px) {
    h1 {
        font-size: 28px;
    }

    .btn {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }

    .container {
        padding: 30px 15px;
    }
}



.navbar {
    background: #1f232b;
    color: #fff;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
}
.logo a{
    text-decoration: none;
    color:#fff;
}
.logo span {
    color: #fff;
    font-size: 14px;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f5c542;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 900px) {
    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: #1f232b;
        width: 100%;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .search-box {
        width: 80%;
    }

    .search-box input {
        width: 100%;
    }

    .menu-toggle {
        display: block;
    }
}

.info-container {
    max-width: 900px;
}

.main-title {
    font-size: 36px;
    font-weight: bold;
    color: #000000;
    text-align: center;
    display: flex;
    justify-content: center;
    margin: auto;
    margin-bottom: 20px;
}


.description-text {
    font-size: 18px;
    line-height: 1.6;
    margin-left: 30px;
    color: #333333;
}

.brand-link {
    color: #0000ee;
    text-decoration: underline;
    font-weight: bold;
}

.brand-link:hover {
    color: #551a8b;
}

.content-section img {
    width: 60%;
    height: 60vh;
    text-align: center;
    margin: auto;
    justify-content: center;
    display: flex;
}

.menu-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

.menu-item {
    background: linear-gradient(to bottom, #ffffff 0%, #a0a0a0 100%);
    border-radius: 20px;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 40px;
    margin-bottom: 5px;
    color: #000;
}

.label {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

@media (max-width: 600px) {
    .menu-item {
        width: 100px;
        height: 100px;
    }

    .icon {
        font-size: 30px;
    }

    .label {
        font-size: 14px;
    }
}

.app-container {
    max-width: 1100px;
    margin: auto;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
}

.app-header {
    background: linear-gradient(90deg, #000000, #000000);
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
}

.info-row {
    display: flex;
    padding: 18px 20px;
    align-items: center;
}

.info-row:nth-child(even) {
    background: #eef5fc;
}

.info-row:nth-child(odd) {
    background: #e6ebf0;
}

.info-title {
    width: 35%;
    font-weight: 600;
    color: #000;
}

.info-value {
    width: 65%;
    color: #000;
}

@media (max-width: 768px) {
    .info-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .info-title,
    .info-value {
        width: 100%;
    }

    .info-title {
        margin-bottom: 6px;
        font-size: 14px;
        color: #333;
    }

    .info-value {
        font-size: 15px;
    }

    .app-header {
        font-size: 18px;
        padding: 16px;
    }
}

.description p {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin-left: 30px;
    max-width: 900px;

}

.text h2 {
    margin-left: 30px;
    text-align: justify;
}

.text h3 {
    margin-left: 30px;
    text-align: justify;
}

.text p {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin-left: 30px;
    max-width: 900px;
    text-align: justify;
}

.text li {
    margin-left: 30px;
}

.text button {
    background-color: #000000;
    color: white;
    padding: 10px 20px;
    width: 17%;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    justify-content: center;
    margin: auto;
    display: flex;
}


.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #000000;
    border-left: 5px solid #000000;
    border-radius: 5px;
    padding: 15px 20px;
    margin-bottom: 20px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-size: 20px;
    color: #333333;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
}

.faq-answer {
    font-size: 16px;
    color: #555555;
    margin-top: 0;
}

.site-footer {
    background-color: #ff3333;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    width: 100%;
}

.site-footer p {
    margin: 0;
    font-size: 14px;
}

.footer-link {
    color: #ffffff;
    text-decoration: underline;
}

.footer-link:hover {
    text-decoration: none;
}
.content img{
   width: 60%;
    height: 60vh;
    text-align: center;
    margin: auto;
    justify-content: center;
    display: flex;
}