﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #f3f3f3 color:#333;
}

.container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}
/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.logo {
    font-size: 36px;
    font-weight: 500;
    color: #333;
}

.nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #444;
    font-size: 16px;
}

    .nav a:hover {
        color: #000;
    }

/* Main */
.main {
    text-align: center;
    padding: 60px 0;
}

    .main h1 {
        font-size: 34px;
        font-weight: 600;
        margin-bottom: 35px;
    }

/* Input */
.download-box {
    display: flex;
    justify-content: center;
    max-width: 650px;
    margin: 0 auto;
}

    .download-box input {
        flex: 1;
        padding: 16px;
        font-size: 16px;
        border: 3px solid #7ed321;
        border-right: none;
        outline: none;
    }

    .download-box button {
        background: #7ed321;
        border: none;
        color: white;
        padding: 0 30px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
    }

        .download-box button:hover {
            background: #6cc11b;
        }

.terms {
    margin-top: 12px;
    font-size: 14px;
    color: #555;
}

    .terms a {
        color: #1a73e8;
        text-decoration: none;
    }

/* Tutorial */
.tutorial {
    margin-top: 25px;
    font-size: 15px;
    color: #1a73e8;
}

/* Social Buttons */
.platforms {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.platform {
    background: #dfe9db;
    padding: 14px 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

/* All Resources */
.resources {
    margin-top: 60px;
    text-align: center;
}

    .resources h2 {
        font-size: 22px;
        margin-bottom: 35px;
        font-weight: 600;
    }

.resource-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    max-width: 900px;
    margin: auto;
}

.resource-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

@media(max-width:900px) {
    .resource-grid

{
    grid-template-columns: repeat(2,1fr);
}

}

@media(max-width:600px) {
    .download-box

{
    flex-direction: column;
}

.download-box input {
    border-right: 3px solid #7ed321;
    border-bottom: none;
}

.download-box button {
    padding: 14px;
}

}


.info-section {
    max-width: 1000px;
    margin: 70px auto;
    padding: 0 20px;
}

    .info-section h2 {
        text-align: center;
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 25px;
    }

    .info-section p {
        font-size: 15px;
        line-height: 1.7;
        color: #444;
        margin-bottom: 15px;
    }

.guide-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin: 60px 0 40px;
}

.guide-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

    .guide-step:nth-child(even) {
        flex-direction: row-reverse;
    }

.guide-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.guide-image {
    flex: 1;
    background: #e9eef1;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

    .guide-image img {
        max-width: 100%;
        border-radius: 6px;
    }

.install-btn {
    display: inline-block;
    background: #22c55e;
    color: #fff;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
}

    .install-btn:hover {
        background: #16a34a;
    }

@media(max-width:900px) {
    .guide-step {
        flex-direction: column !important;
    }
}

    .faq-wrapper {
        max-width: 800px;
        margin: 80px auto;
        text-align: center;
    }

        .faq-wrapper h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 30px;
        }

    .faq-item {
        background: #e9e9e9;
        margin-bottom: 12px;
        border-radius: 4px;
        overflow: hidden;
        text-align: left;
        transition: all 0.3s ease;
    }

    .faq-question {
        padding: 16px 20px;
        font-weight: 600;
        font-size: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

        .faq-question span {
            transition: transform 0.3s ease;
            font-size: 14px;
        }

    .faq-answer {
        display: none;
        padding: 15px 20px;
        font-size: 14px;
        background: #f5f5f5;
        line-height: 1.6;
    }

    .faq-item.active .faq-answer {
        display: block;
    }

    .faq-item.active .faq-question span {
        transform: rotate(180deg);
    }

    .simple-footer {
        width: 100%;
        background: #e9edf2;
        border-top: 1px solid #ccc;
        padding: 14px 30px; /* left/right spacing */
        font-size: 14px;
        color: #5a6a7a;
    }

    .footer-content {
        display: flex;
        justify-content: space-between; /* pushes left & right */
        align-items: center;
        width: 100%;
    }

    @media (max-width:600px) {
        .footer-content

{
    flex-direction: column;
    text-align: center;
    gap: 5px;
}
}



/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    position: relative;
}

/* Desktop Menu */
.nav {
    display: flex;
    gap: 25px;
}

    .nav a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
    }

        .nav a:hover {
            color: #007bff;
        }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: relative;
}

.menu-btn {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #333;
    line-height: 1;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 45px;
    width: 180px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,.15);
    overflow: hidden;
    z-index: 1000;
}

    .dropdown-menu a {
        display: block;
        padding: 12px 16px;
        text-decoration: none;
        color: #333;
        border-bottom: 1px solid #eee;
    }

        .dropdown-menu a:last-child {
            border-bottom: none;
        }

        .dropdown-menu a:hover {
            background: #f5f5f5;
        }

/* Responsive */
@media (max-width:768px) {

    .nav {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .logo img {
        width: 130px;
    }
}