body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

nav {
    background: #f5b400;
    padding: 14px 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    margin-left: 20px;
}

.hero {
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 60px;
    color: #f5b400;
    margin-bottom: 10px;
}

.hero p {
    font-size: 22px;
    color: #666;
}

button {
    background: #f5b400;
    border: none;
    padding: 15px 25px;
    margin: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    flex-wrap: wrap;
}

.card {
    width: 220px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.page-content {
    max-width: 900px;
    margin: 80px auto;
    padding: 20px;
}

.page-content h1 {
    color: #f5b400;
    font-size: 42px;
}

.page-content p {
    font-size: 20px;
    color: #555;
}

.page-content .card {
    width: auto;
    background: white;
    padding: 25px;
    margin-top: 20px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.08);
}

.page-content .card p {
    font-size: 20px;
    color: #555;
}

.page-content .card h3 {
    margin-top: 0;
}

.support-box {
    background: white;
    padding: 25px;
    margin-top: 20px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.08);
}

.support-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.support-box input,
.support-box textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

.support-box input:focus,
.support-box textarea:focus {
    outline: none;
    border-color: #f5b400;
}

.support-box button {
    background: #f5b400;
    color: black;
    font-weight: bold;
    width: 180px;
}

.support-box button:hover {
    background: #e0a500;
}

nav a:hover {
    color: white;
    transform: scale(1.3);
}

nav a {
    display: inline-block;
    text-decoration: none;
    color: black;
    font-weight: bold;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: bold;
}

.logo img {
    width: 46px;
    height: 46px;
    border-radius: 10px;
}

footer {
    background: #f5b400;
    padding: 25px;
    text-align: center;
    margin-top: 60px;
}

footer p {
    margin: 0 0 10px 0;
    font-weight: bold;
}

footer a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    margin: 0 10px;
}

footer a:hover {
    color: white;
}

.info-card {
    background: white;
    padding: 25px;
    margin-top: 20px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.08);
}

.info-card h2 {
    margin-top: 0;
    font-size: 24px;
    color: black;
}

.info-card p {
    font-size: 20px;
    color: #555;
}


   .features-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 35px;
}

.features-list .info-card {
    padding: 26px;
}

.features-list .info-card h2 {
    font-size: 24px;
    margin-bottom: 14px;
}

.features-list .info-card p {
    font-size: 18px;
    line-height: 1.5;
}
.download-btn {
    display: inline-block;
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 16px 28px;
    margin: 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 18px;
}

.android-btn {
    background: #1f1f1f;
}

.ios-btn {
    background: #000000;
}

.download-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.android-btn:hover {
    background: #333333;
}

.ios-btn:hover {
    background: #222222;
}

.download-buttons {
    margin-top: 25px;
}

.platform-note {
    font-size: 16px;
    color: #777777;
    margin-top: 10px;
}

.why-section {
    max-width: 1100px;
    margin: 80px auto 0 auto;
}

.why-section h3 {
    font-size: 42px;
    color: #f5b400;
    margin-bottom: 30px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.why-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-card h4 {
    margin-top: 0;
    font-size: 22px;
}

.why-card p {
    font-size: 18px;
    color: #555555;
}

@media (max-width: 768px) {

    nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        text-align: center;
    }

    .logo {
        font-size: 20px;
    }

    .logo img {
        width: 40px;
        height: 40px;
    }

    nav a {
        margin: 6px;
        display: inline-block;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

    .page-content h1 {
        font-size: 34px;
    }

    .download-btn {
        display: block;
        margin: 10px auto;
        width: fit-content;
    }

    footer a {
        display: inline-block;
        margin: 5px;
    }
        .features-list {
        grid-template-columns: 1fr;
    }
}