.site-url {
    text-align: center;
    color: #9ca3af;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.page-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 1.5rem 0 0.5rem;
}

.page-subtitle {
    color: #9ca3af;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.faq-accordion {
    margin-bottom: 1rem;
}

.faq-item {
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 16px;
    border: 1px solid rgba(6, 182, 212, 0.3);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(6, 182, 212, 0.05);
}

.faq-icon {
    color: var(--cyan-primary);
    font-size: 1.25rem;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem 1.5rem;
}

.faq-answer-text {
    color: #d1d5db;
    line-height: 1.7;
}

.contact-card {
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.15), rgba(168, 85, 247, 0.15));
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(6, 182, 212, 0.4);
    text-align: center;
    margin-top: 2rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--cyan-primary);
}

.contact-card p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.btn-contact {
    background: var(--cyan-primary);
    color: var(--bg-dark);
    padding: 0.875rem 2rem;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
}

.btn-contact:hover {
    background: var(--cyan-light);
    transform: translateY(-2px);
}
@media (min-width: 768px) {
    .main-content {
        padding-bottom: 2rem;
        margin-top: 4rem;
    }

    .bottom-nav {
        display: none;
    }

    .contact-card {
        padding: 2.5rem;
    }
}
@media(max-width: 768px){
    .main-content {
        margin-top: 3rem;
    }
}