
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background: #1a1d24;
    color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header Section */
.header-section {
    background: #242931;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #04E91A;
}

.header-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Search Bar */
.search-bar {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.search-bar input {
    flex: 1;
    padding: 15px 20px;
    background: #1a1d24;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 1rem;
    color: #fff;
}

.search-bar input:focus {
    outline: none;
    border-color: #04E91A;
}

.search-bar button {
    padding: 15px 30px;
    background: #04E91A;
    color: #1a1d24;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.search-bar button:hover {
    background: #00e6bc;
}

/* Features Section */
.feature-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: #242931;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: #2a3038;
}

.feature-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: invert(1);
    opacity: 0.8;
}

.feature-item h3 {
    color: #04E91A;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    margin: 4rem auto;
}

.faq-section h2 {
    text-align: center;
    color: #04E91A;
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-item button {
    width: 100%;
    padding: 1rem;
    text-align: left;
    background: #242931;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-item button:hover {
    background: #2a3038;
}

.faq-answer {
    display: none;
    padding: 1rem;
    background: #1e2329;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0 0 4px 4px;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.8);
}

.faq-answer a {
    color: #04E91A;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    text-align: center;
    margin: 4rem auto;
}

.contact-section h2 {
    color: #04E91A;
    margin-bottom: 1rem;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-option {
    background: #242931;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.contact-option:hover {
    transform: translateY(-5px);
    background: #2a3038;
}

.contact-option img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    filter: invert(1);
    opacity: 0.8;
}

.contact-option a {
    color: #04E91A;
    text-decoration: none;
    font-weight: 500;
}

.contact-option a:hover {
    text-decoration: underline;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #242931;
}

::-webkit-scrollbar-thumb {
    background: #636b74;
    border-radius: 3px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-section {
        padding: 3rem 1rem;
    }

    .header-section h1 {
        font-size: 2rem;
    }

    .search-bar {
        flex-direction: column;
    }

    .search-bar input,
    .search-bar button {
        width: 100%;
    }

    .container {
        padding: 1rem;
    }

    .feature-section {
        grid-template-columns: 1fr;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-item,
.faq-item,
.contact-option {
    animation: fadeIn 0.5s ease-out forwards;
}
