.tca-members-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.tca-profile-header {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tca-profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-right: 30px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tca-profile-info {
    flex: 1;
}

.tca-profile-name {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #333;
}

.tca-profile-email {
    color: #666;
    margin: 0 0 20px 0;
}

.tca-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.tca-stat-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    text-align: center;
}

.tca-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #2271b1;
    margin: 10px 0;
}

.tca-stat-label {
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tca-stat-icon {
    font-size: 24px;
    color: #2271b1;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .tca-profile-header {
        flex-direction: column;
        text-align: center;
    }

    .tca-profile-image {
        margin: 0 0 20px 0;
    }

    .tca-stats-grid {
        grid-template-columns: 1fr;
    }
}
