* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: 'Bricolage Grotesque', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: url('tarmoqback.png') no-repeat center -100px / contain #000;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #000;
    padding: 10px 0 15px 0;
    border-bottom: 1px solid #333;
    position: relative;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-align: left;
    margin-left: -120px;
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    display: flex;
    align-items: baseline;
}

.logo-domain {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-left: 2px;
}

.nav {
    margin-left: auto;
    margin-right: 0;
}

.nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

.nav a:hover {
    color: #ccc;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.8rem;
    margin-left: 5px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #222;
    min-width: 150px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #444;
}

.dropdown-item {
    color: #fff;
    padding: 12px 16px;
    display: block;
    font-size: 1rem;
    cursor: default;
}

.dropdown:hover .dropdown-menu {
    display: block;
}



/* Hero Section */
.hero {
    background: rgba(0, 0, 0, 0.8);
    padding: 200px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ccc;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    background: #000;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn:hover {
    background: #333;
}

.app-store {
    background: #000;
}

.google-play {
    background: #333;
}


/* FAQ Section */
.faq {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.8);
}

.faq-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.faq-text {
    flex: 1;
}

.faq-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    margin-top: 150px;
    color: #fff;
}

.faq-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #007bff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
}

.faq-btn {
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.faq-image {
    flex: 1;
    text-align: center;
}

.faq-image img {
    max-width: 100%;
    height: auto;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px 0;
    border-top: 1px solid #333;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.column h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.column ul {
    list-style: none;
}

.column ul li {
    margin-bottom: 8px;
}

.column ul li a {
    color: #ccc;
    text-decoration: none;
}

.column ul li a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.footer-bottom p {
    color: #ccc;
}

.download-apps h4 {
    margin-bottom: 10px;
    color: #fff;
}

.app-btn {
    background: #333;
    border: 1px solid #333;
    color: #fff;
    padding: 8px 15px;
    margin-right: 10px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.9rem;
}

.app-btn:hover {
    background: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    .nav a {
        margin: 0 10px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    .faq-content {
        flex-direction: column;
        gap: 30px;
    }
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .hero {
        padding: 60px 0;
    }
    .faq {
        padding: 60px 0;
    }
    .footer-links {
        grid-template-columns: 1fr;
    }
}
