/* About Section Styles */
.about-content {
    text-align: center;
    padding: 20px 0;
}

.about-logo {
    font-size: 4rem;
    margin-bottom: 20px;
}

.about-title {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.about-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.about-feature {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-color);
}

.about-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.9rem;
}

.about-contact {
    margin-top: 10px;
}

.about-contact a {
    color: var(--primary-color);
    text-decoration: none;
}

.about-contact a:hover {
    text-decoration: underline;
}

/* Settings Info */
.settings-info {
    flex: 1;
}

.settings-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.settings-value {
    color: var(--text-light);
    font-size: 0.9rem;
    word-break: break-all;
}