/* About Page - Matching Old DogeGage Layout */

.about-page {
    padding: 8rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Hero Section */
.about-hero {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-hero-logo {
    width: 128px;
    height: 128px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 5px;
    border-radius: 20px;
}

.about-hero-content {
    flex: 1;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}


/* Two Column Layout */
.about-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-column-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Process List */
.about-process-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-process-number {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.about-process-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Team Grid */
.about-team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-team-member {
    text-align: center;
}

.about-team-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
}

.about-team-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.about-team-role {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* FAQ Section */
.about-faq {
    margin-bottom: 4rem;
}

.about-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.about-faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-faq-item {
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s;
}

.about-faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.about-faq-toggle {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-primary);
    text-align: left;
    transition: background 0.2s;
}

.about-faq-toggle:hover {
    background: rgba(255, 255, 255, 0.03);
}

.about-faq-question {
    font-size: 1.125rem;
    font-weight: 600;
}

.about-faq-icon {
    font-size: 1rem;
    transition: transform 0.3s;
    color: var(--text-secondary);
}

.about-faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.about-faq-item.open .about-faq-answer-wrapper {
    max-height: 500px;
}

.about-faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}



/* Responsive */
@media (max-width: 968px) {
    .about-two-column {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }
}